Completed
Push — 42-formatter ( cff7a4 )
by Nicolas
32:10 queued 28:41
created
src/Karma/Logging/OutputInterfaceAdapter.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -50,8 +50,8 @@  discard block
 block discarded – undo
50 50
     private function writeLevel($level)
51 51
     {
52 52
         $message = str_pad(sprintf(
53
-           '[%s]',
54
-           strtoupper($level)
53
+            '[%s]',
54
+            strtoupper($level)
55 55
         ), 10);
56 56
 
57 57
         $this->output->write($this->colorizeMessage($level, $message));
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
         if(isset($colors[$level]))
68 68
         {
69 69
             $message = sprintf(
70
-               '<%1$s>%2$s</%1$s>',
70
+                '<%1$s>%2$s</%1$s>',
71 71
                 'fg=' . $colors[$level],
72 72
                 $message
73 73
             );
Please login to merge, or discard this patch.
src/Karma/Command.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -102,8 +102,8 @@
 block discarded – undo
102 102
     private function printHeader()
103 103
     {
104 104
         $this->output->writeln(sprintf(
105
-           '<comment>%s</comment>',
106
-           $this->getLogo()
105
+            '<comment>%s</comment>',
106
+            $this->getLogo()
107 107
         ));
108 108
     }
109 109
     
Please login to merge, or discard this patch.
src/Karma/Command/Hydrate.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -165,9 +165,9 @@  discard block
 block discarded – undo
165 165
         foreach($overrides as $variable => $value)
166 166
         {
167 167
             $logger->info(sprintf(
168
-               'Override <important>%s</important> with value <important>%s</important>',
169
-               $variable,
170
-               $value
168
+                'Override <important>%s</important> with value <important>%s</important>',
169
+                $variable,
170
+                $value
171 171
             ));
172 172
             
173 173
             $reader->overrideVariable($variable, $this->filterValue($value));
@@ -182,9 +182,9 @@  discard block
 block discarded – undo
182 182
         foreach($data as $variable => $value)
183 183
         {
184 184
             $logger->info(sprintf(
185
-               'Set custom data <important>%s</important> with value <important>%s</important>',
186
-               $variable,
187
-               $value
185
+                'Set custom data <important>%s</important> with value <important>%s</important>',
186
+                $variable,
187
+                $value
188 188
             ));
189 189
             
190 190
             $reader->setCustomData($variable, $this->filterValue($value));
Please login to merge, or discard this patch.