summaryrefslogtreecommitdiffstats
path: root/system
diff options
context:
space:
mode:
authorkatsew <y.katsew@gmail.com>2017-02-20 12:26:46 +0100
committerkatsew <y.katsew@gmail.com>2017-02-20 12:27:03 +0100
commita729f757bf2c5ef45ae45f9101879f5fdf5a2c0e (patch)
tree010a566cb7bf40696813523bde0bc352f46f77ad /system
parentd790a06ad50803dfd9778e6eeb8caf799b908b93 (diff)
Remove specific argument from abstraction
Signed-off-by: katsew <y.katsew@gmail.com>
Diffstat (limited to 'system')
-rw-r--r--system/libraries/Cache/drivers/Cache_apcu.php5
1 files changed, 2 insertions, 3 deletions
diff --git a/system/libraries/Cache/drivers/Cache_apcu.php b/system/libraries/Cache/drivers/Cache_apcu.php
index 584162d32..56e553395 100644
--- a/system/libraries/Cache/drivers/Cache_apcu.php
+++ b/system/libraries/Cache/drivers/Cache_apcu.php
@@ -169,12 +169,11 @@ class CI_Cache_apcu extends CI_Driver {
/**
* Cache Info
*
- * @param bool Whether to exclude the individual list of cache entries
* @return mixed array on success, false on failure
*/
- public function cache_info($limited = FALSE)
+ public function cache_info()
{
- return apcu_cache_info($limited);
+ return apcu_cache_info();
}
// ------------------------------------------------------------------------