Completed
Push — 16-vcs ( 37de27 )
by Nicolas
28:38 queued 23:50
created
src/Karma/Command/Display.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -61,7 +61,7 @@
 block discarded – undo
61 61
         foreach($values as $variable => $value)
62 62
         {
63 63
             $this->output->writeln(sprintf(
64
-               '<fg=cyan>%s</fg=cyan> = %s',
64
+                '<fg=cyan>%s</fg=cyan> = %s',
65 65
                 $variable,
66 66
                 $this->formatValue($value)
67 67
             ));
Please login to merge, or discard this patch.
src/Karma/Hydrator.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -99,7 +99,7 @@
 block discarded – undo
99 99
         }
100 100
 
101 101
         $this->info(sprintf(
102
-           '%d files generated',
102
+            '%d files generated',
103 103
             count($distFiles)
104 104
         ));
105 105
     }
Please login to merge, or discard this patch.
src/Karma/ProfileReader.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@
 block discarded – undo
56 56
         catch(ParseException $e)
57 57
         {
58 58
             throw new \RuntimeException(sprintf(
59
-               'Error while parsing profile : %s',
59
+                'Error while parsing profile : %s',
60 60
                 $e->getMessage()
61 61
             ));
62 62
         }
Please login to merge, or discard this patch.
src/Karma/Configuration/Parser.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -221,9 +221,9 @@
 block discarded – undo
221 221
         foreach($files as $file => $status)
222 222
         {
223 223
             $message = sprintf(
224
-               'External file %s was %s',
225
-               $file,
226
-               $status['found'] ? 'found' : '<options=bold>not found</options=bold>'
224
+                'External file %s was %s',
225
+                $file,
226
+                $status['found'] ? 'found' : '<options=bold>not found</options=bold>'
227 227
             );
228 228
             
229 229
             $this->warning($message);
Please login to merge, or discard this patch.