Completed
Push — 57-formatter-per-extension ( 73b3c8 )
by Nicolas
40:17 queued 36:16
created
src/Karma/Command.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -130,7 +130,7 @@
 block discarded – undo
130 130
 ...@@...@@..
131 131
 ...@@....@@.
132 132
 
133
-ASCIIART;
133
+asciiart;
134 134
 
135 135
         $background = 'fg=magenta';
136 136
         $text = 'fg=white';
Please login to merge, or discard this patch.
src/Karma/Configuration/Parser.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -178,7 +178,7 @@
 block discarded – undo
178 178
 
179 179
     private function changeCurrentFile($filePath)
180 180
     {
181
-        $this->info("Reading $filePath");
181
+        $this->info("reading $filePath");
182 182
 
183 183
         foreach($this->parsers as $parser)
184 184
         {
Please login to merge, or discard this patch.
src/Karma/VcsHandler.php 1 patch
Upper-Lower-Casing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -42,13 +42,13 @@
 block discarded – undo
42 42
 
43 43
             if($this->vcs->isTracked($targetFile))
44 44
             {
45
-                $this->logger->info("Untrack $targetFile");
45
+                $this->logger->info("untrack $targetFile");
46 46
                 $this->vcs->untrackFile($targetFile);
47 47
             }
48 48
 
49 49
             if($this->vcs->isIgnored($targetFile) === false)
50 50
             {
51
-                $this->logger->info("Ignore $targetFile");
51
+                $this->logger->info("ignore $targetFile");
52 52
                 $this->vcs->ignoreFile($targetFile);
53 53
             }
54 54
         }
Please login to merge, or discard this patch.
src/Karma/Hydrator.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -92,7 +92,7 @@
 block discarded – undo
92 92
         $targetContent = $this->injectValues($file, $content, $environment);
93 93
         
94 94
         $targetFile = substr($file, 0, strlen($this->suffix) * -1);
95
-        $this->debug("Write $targetFile");
95
+        $this->debug("write $targetFile");
96 96
 
97 97
         if($this->dryRun === false)
98 98
         {
Please login to merge, or discard this patch.