Passed
Branch master (ddd97a)
by Harry
03:24
created
src/Graze/Monolog/Formatter/ConsoleFormatter.php 2 patches
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -32,17 +32,17 @@
 block discarded – undo
32 32
         Logger::CRITICAL    => ['0;30','43'], // Black/Yellow
33 33
         Logger::ALERT       => ['1;37','45'], // White/Purple
34 34
         Logger::EMERGENCY   => ['1;37','41'], // White/Red
35
-     );
35
+        );
36 36
 
37
-     /**
38
-      * @var array
39
-      */
40
-     private $columnLengthMax = [];
37
+        /**
38
+         * @var array
39
+         */
40
+        private $columnLengthMax = [];
41 41
 
42
-     /**
43
-      * @var array
44
-      */
45
-     private $rows = [];
42
+        /**
43
+         * @var array
44
+         */
45
+        private $rows = [];
46 46
 
47 47
     /**
48 48
      * @param string $dateFormat The format of the timestamp: one supported by DateTime::format
Please login to merge, or discard this 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.