Passed
Push — develop ( 24796a...8e17d9 )
by nguereza
02:10
created
src/Handler/FileHandler.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -86,8 +86,8 @@
 block discarded – undo
86 86
         $this->checkLogDir();
87 87
 
88 88
         $logFilePath = $this->path .
89
-                       $this->config->get('handlers.file.prefix')
90
-                       . date('Y-m-d') . '.log';
89
+                        $this->config->get('handlers.file.prefix')
90
+                        . date('Y-m-d') . '.log';
91 91
 
92 92
         try {
93 93
             $handler = fopen($logFilePath, 'a+');
Please login to merge, or discard this patch.
src/Formatter/AbstractFormatter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -143,7 +143,7 @@
 block discarded – undo
143 143
     {
144 144
         $format = 'Y-m-d H:i:s.u';
145 145
         $useTimestamp = $this->config->get('timestamp', false);
146
-        if($useTimestamp === false){
146
+        if ($useTimestamp === false) {
147 147
             $format = 'H:i:s.u';
148 148
         }
149 149
         
Please login to merge, or discard this patch.