diff options
-rw-r--r-- | lib/private/util.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/private/util.php b/lib/private/util.php index fa0c6f13c9a..0e1bb3483c6 100644 --- a/lib/private/util.php +++ b/lib/private/util.php @@ -1257,9 +1257,10 @@ class OC_Util { * caller should fall back on clearing the entire cache * with clearOpcodeCache() if unsuccessful * + * @param string $path the path of the file to clear from the cache * @return bool true if underlying function returns true, otherwise false */ - public static function deleteFromOpcodeCache($path=NULL) { + public static function deleteFromOpcodeCache($path) { $ret = false; if ($path) { // APC >= 3.1.1 |