Skip to content

Commit

Permalink
Typehint argument.
Browse files Browse the repository at this point in the history
  • Loading branch information
garas authored and ADmad committed Oct 18, 2018
1 parent 084ab25 commit 90df852
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Cache/Engine/FileEngine.php
Expand Up @@ -481,7 +481,7 @@ public function clearGroup($group)
);
$filtered = new CallbackFilterIterator(
$contents,
function ($current) use ($group, $prefix) {
function (SplFileInfo $current) use ($group, $prefix) {
if (!$current->isFile()) {
return false;
}
Expand Down

0 comments on commit 90df852

Please sign in to comment.