Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/OpcacheClass.php
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
}

Expand Down