Skip to content

Commit 4f6406c

Browse files
committed
Fixed code style.
1 parent e0eb32c commit 4f6406c

File tree

1 file changed

+2
-2
lines changed
  • src/Symfony/Component/HttpKernel/HttpCache

1 file changed

+2
-2
lines changed

src/Symfony/Component/HttpKernel/HttpCache/Store.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,11 +73,11 @@ public function lock(Request $request)
7373
{
7474
$path = $this->getPath($this->getCacheKey($request).'.lck');
7575
if (!is_dir(dirname($path)) && false === @mkdir(dirname($path), 0777, true)) {
76-
return false;
76+
return false;
7777
}
7878

7979
$lock = @fopen($path, 'x');
80-
if ($lock !== false) {
80+
if (false !== $lock) {
8181
fclose($lock);
8282

8383
$this->locks[] = $path;

0 commit comments

Comments
 (0)