Passed
Push — master ( bdcaa1...10a191 )
by Nils
02:26
created
src/Check/Files/FileExistsCheck.php 1 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.