Skip to content

Commit

Permalink
Refs #193: Try to fix/suppress the cache conflict warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
Manuel Pichler committed May 21, 2015
1 parent 2221f74 commit a4e20ff
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -217,10 +217,10 @@ protected function flushEntry(\SplFileInfo $file)
if ($file->isDot()) {
return;
} elseif ($file->isFile()) {
unlink($path);
@unlink($path);
} else {
$this->flushDirectory($path);
rmdir($path);
@rmdir($path);
}
}
}

0 comments on commit a4e20ff

Please sign in to comment.