Skip to content
This repository has been archived by the owner on Mar 31, 2023. It is now read-only.

Commit

Permalink
Merge pull request #2 from SuRaMoN/master
Browse files Browse the repository at this point in the history
Fixed warning apc_clear_cache
  • Loading branch information
lavoiesl committed Dec 30, 2016
2 parents bcc49e1 + ba6702e commit f4ddd0c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion polyfill.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ function apc_cas($key, $old, $new)
if (function_exists('apcu_clear_cache') && !function_exists('apc_clear_cache')) {
function apc_clear_cache($cache_type = "")
{
return apcu_clear_cache($cache_type);
return apcu_clear_cache();
}
}

Expand Down

0 comments on commit f4ddd0c

Please sign in to comment.