From a729f757bf2c5ef45ae45f9101879f5fdf5a2c0e Mon Sep 17 00:00:00 2001 From: katsew Date: Mon, 20 Feb 2017 20:26:46 +0900 Subject: Remove specific argument from abstraction Signed-off-by: katsew --- system/libraries/Cache/drivers/Cache_apcu.php | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'system') 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(); } // ------------------------------------------------------------------------ -- cgit v1.2.3-24-g4f1b