Completed
Push — master ( 99acef...f48dd8 )
by Greg
01:25
created
src/LogOutputStyler.php 2 patches
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -2,8 +2,6 @@
 block discarded – undo
2 2
 namespace Consolidation\Log;
3 3
 
4 4
 use Psr\Log\LogLevel;
5
-use Symfony\Component\Console\Output\OutputInterface;
6
-use Symfony\Component\Console\Style\OutputStyle;
7 5
 
8 6
 /**
9 7
  * Styles log output based on format mappings provided in the constructor.
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -107,7 +107,7 @@
 block discarded – undo
107 107
             $message = $this->wrapFormatString(" $message ", $messageStyle);
108 108
         }
109 109
         if (!empty($label)) {
110
-            $message = ' ' . $this->wrapFormatString("[$label]", $labelStyle) . ' ' . $message;
110
+            $message = ' '.$this->wrapFormatString("[$label]", $labelStyle).' '.$message;
111 111
         }
112 112
 
113 113
         return $message;
Please login to merge, or discard this patch.
src/UnstyledLogOutputStyler.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,6 @@
 block discarded – undo
2 2
 namespace Consolidation\Log;
3 3
 
4 4
 use Symfony\Component\Console\Output\OutputInterface;
5
-use Symfony\Component\Console\Style\OutputStyle;
6 5
 
7 6
 /**
8 7
  * Base class that provides basic unstyled output.
Please login to merge, or discard this patch.
src/LoggerManager.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -92,7 +92,7 @@
 block discarded – undo
92 92
             return $this->loggers;
93 93
         }
94 94
         if (isset($this->fallbackLogger)) {
95
-            return [ $this->fallbackLogger ];
95
+            return [$this->fallbackLogger];
96 96
         }
97 97
         return [];
98 98
     }
Please login to merge, or discard this patch.