Skip to content

Commit

Permalink
fixed CS
Browse files Browse the repository at this point in the history
  • Loading branch information
fabpot committed Oct 4, 2013
1 parent 83fc73e commit 6fce9d8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/Symfony/Component/HttpKernel/HttpCache/Store.php
Expand Up @@ -50,7 +50,9 @@ public function cleanup()
{
// unlock everything
foreach ($this->locks as $lock) {
!file_exists($lock) ?: @unlink($lock);
if (file_exists($lock)) {
@unlink($lock);
}
}

$error = error_get_last();
Expand Down

0 comments on commit 6fce9d8

Please sign in to comment.