diff options
author | Kasim Tan <kasimtan@gmail.com> | 2016-05-19 21:06:07 +0200 |
---|---|---|
committer | Kasim Tan <kasimtan@gmail.com> | 2016-05-19 21:06:07 +0200 |
commit | cadcef85a218595b5999442d669086bdb5628947 (patch) | |
tree | 7c78989d1c645ffd056b182ce0b153ce30d71ada /system/libraries/Cache/drivers | |
parent | 6dfdbb2327b8bd628477af2a3d7f7c8bea2f1cec (diff) |
Fixed PHPDoc parameter name and type discrepancies
Diffstat (limited to 'system/libraries/Cache/drivers')
-rw-r--r-- | system/libraries/Cache/drivers/Cache_apc.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/libraries/Cache/drivers/Cache_apc.php b/system/libraries/Cache/drivers/Cache_apc.php index 07ea8f474..fb8df03a7 100644 --- a/system/libraries/Cache/drivers/Cache_apc.php +++ b/system/libraries/Cache/drivers/Cache_apc.php @@ -97,7 +97,7 @@ class CI_Cache_apc extends CI_Driver { * * @param string $id Cache ID * @param mixed $data Data to store - * @param int $ttol Length of time (in seconds) to cache the data + * @param int $ttl Length of time (in seconds) to cache the data * @param bool $raw Whether to store the raw value * @return bool TRUE on success, FALSE on failure */ |