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.
src/Logger/LoggerInterface.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -68,11 +68,11 @@
 block discarded – undo
68 68
      */
69 69
     public function error($message);
70 70
 
71
-     /**
72
-     * @param string $string
73
-     *
74
-     * @return void
75
-     */
71
+        /**
72
+         * @param string $string
73
+         *
74
+         * @return void
75
+         */
76 76
     public function command($string);
77 77
 
78 78
     /**
Please login to merge, or discard this patch.