Passed
Branch master (ddd97a)
by Harry
03:24
created
src/Graze/Monolog/Formatter/ConsoleFormatter.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -29,9 +29,9 @@  discard block
 block discarded – undo
29 29
         Logger::NOTICE      => ['1;37', '1;33'], // Yellow
30 30
         Logger::WARNING     => ['1;37', '0;35'], // Purple
31 31
         Logger::ERROR       => ['1;37', '0;31'], // Red
32
-        Logger::CRITICAL    => ['0;30','43'], // Black/Yellow
33
-        Logger::ALERT       => ['1;37','45'], // White/Purple
34
-        Logger::EMERGENCY   => ['1;37','41'], // White/Red
32
+        Logger::CRITICAL    => ['0;30', '43'], // Black/Yellow
33
+        Logger::ALERT       => ['1;37', '45'], // White/Purple
34
+        Logger::EMERGENCY   => ['1;37', '41'], // White/Red
35 35
      );
36 36
 
37 37
      /**
@@ -124,9 +124,9 @@  discard block
 block discarded – undo
124 124
             $output .= PHP_EOL . '|';
125 125
 
126 126
             foreach ($this->columnLengthMax as $key => $null) {
127
-                $cellContent = isset($row[$key]) ? $row[$key]: '';
127
+                $cellContent = isset($row[$key]) ? $row[$key] : '';
128 128
 
129
-                $output .= ' ' . str_pad($cellContent, $this->columnLengthMax[$key])  . ' |';
129
+                $output .= ' ' . str_pad($cellContent, $this->columnLengthMax[$key]) . ' |';
130 130
             }
131 131
         }
132 132
 
Please login to merge, or discard this patch.