Passed
Pull Request — master (#4)
by Deric
02:24
created
lib/SimpleLogger.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
                 $console_format = $this->configuration->getLoggerConsoleFormat();
64 64
                 $logline = $this->formatter($level, $message, $console_format);
65 65
                 list($foreground, $background) = $this->configuration->getColours($level);
66
-                fwrite($stdout, Colours::setColour($logline, $foreground, $background) . PHP_EOL);
66
+                fwrite($stdout, Colours::setColour($logline, $foreground, $background).PHP_EOL);
67 67
             }
68 68
 
69 69
             if (($logfile = $this->configuration->getLogfile()) !== null)
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
76 76
                 $file_format = $this->configuration->getLoggerFileFormat();
77 77
                 $logline = $this->formatter($level, $message, $file_format);
78 78
                 $handle = fopen($logfile, "a+");
79
-                fwrite($handle, $logline . PHP_EOL);
79
+                fwrite($handle, $logline.PHP_EOL);
80 80
                 fclose($handle);
81 81
             }
82 82
         }
Please login to merge, or discard this patch.