Test Failed
Branch master (c3454d)
by Chakir
02:10
created
src/Logger/ArrayLogger.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -51,7 +51,9 @@
 block discarded – undo
51 51
             $lines = explode(self::CRLF, $message);
52 52
             $this->logs[] = sprintf("%s %s", $level, $lines[0]);
53 53
             foreach ($lines as $key => $line) {
54
-                if ($key === 0 || $line === '') continue;
54
+                if ($key === 0 || $line === '') {
55
+                    continue;
56
+                }
55 57
                 $this->logs[] = $line;
56 58
             }
57 59
         }
Please login to merge, or discard this patch.