Passed
Push — master ( ab0eba...ca1c6e )
by Nils
02:16
created
src/Check/Files/FileExistsCheck.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
     {
24 24
         if (file_exists($this->filename)) {
25 25
             return new Result(Result::STATUS_PASS, 'The file "' . $this->filename . '" exists.');
26
-        }else{
26
+        } else {
27 27
             return new Result(Result::STATUS_FAIL, 'The file "' . $this->filename . '" does not exist.');
28 28
         }
29 29
     }
Please login to merge, or discard this patch.
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
     {
24 24
         if (file_exists($this->filename)) {
25 25
             return new Result(Result::STATUS_PASS, 'The file "' . $this->filename . '" exists.');
26
-        }else{
26
+        } else{
27 27
             return new Result(Result::STATUS_FAIL, 'The file "' . $this->filename . '" does not exist.');
28 28
         }
29 29
     }
Please login to merge, or discard this patch.