diff --git a/src/OpcacheClass.php b/src/OpcacheClass.php index 337363b..2d2bb31 100755 --- a/src/OpcacheClass.php +++ b/src/OpcacheClass.php @@ -32,10 +32,10 @@ public function getConfig() /** * Get status info. */ - public function getStatus() + public function getStatus($get_scripts = false) { if (function_exists('opcache_get_status')) { - return opcache_get_status(false); + return opcache_get_status($get_scripts); } }