Skip to content

Commit

Permalink
Fixes #193 regression (#319)
Browse files Browse the repository at this point in the history
  • Loading branch information
mdeboer authored and Emir Beganović committed Nov 9, 2017
1 parent 433a544 commit 088fcfe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/php/PDepend/Util/Cache/Driver/FileCacheDriver.php
Expand Up @@ -240,7 +240,7 @@ public function remove($pattern)
// avoid error if we dont find files
if ($glob !== false) {
foreach (glob("{$file}*.*") as $f) {
unlink($f);
@unlink($f);
}
}
}
Expand Down

0 comments on commit 088fcfe

Please sign in to comment.