| @@ -2,8 +2,6 @@ | ||
| 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. | 
| @@ -107,7 +107,7 @@ | ||
| 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; | 
| @@ -2,7 +2,6 @@ | ||
| 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. | 
| @@ -92,7 +92,7 @@ | ||
| 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 | } |