Completed
Push — master ( 4dda9f...9a51b8 )
by Nicolas
02:22
created
src/Configuration/Parser.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
 
47 47
     public function enableExternalSupport(): self
48 48
     {
49
-       $this->parsers->enableExternalSupport($this->fs);
49
+        $this->parsers->enableExternalSupport($this->fs);
50 50
 
51 51
         return $this;
52 52
     }
@@ -218,8 +218,8 @@  discard block
 block discarded – undo
218 218
             if($status['found'] === false)
219 219
             {
220 220
                 $this->warning(sprintf(
221
-                   'External file %s was not found',
222
-                   $file
221
+                    'External file %s was not found',
222
+                    $file
223 223
                 ));
224 224
             }
225 225
         }
Please login to merge, or discard this patch.
src/Logging/OutputInterfaceAdapter.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -54,8 +54,8 @@  discard block
 block discarded – undo
54 54
     private function writeLevel($level): void
55 55
     {
56 56
         $message = str_pad(sprintf(
57
-           '[%s]',
58
-           strtoupper($level)
57
+            '[%s]',
58
+            strtoupper($level)
59 59
         ), 10);
60 60
 
61 61
         $this->output->write($this->colorizeMessage($level, $message));
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
         if(isset($colors[$level]))
72 72
         {
73 73
             $message = sprintf(
74
-               '<%1$s>%2$s</%1$s>',
74
+                '<%1$s>%2$s</%1$s>',
75 75
                 'fg=' . $colors[$level],
76 76
                 $message
77 77
             );
Please login to merge, or discard this patch.