Passed
Pull Request — master (#102)
by Sébastien
03:51
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/InMemoryReader.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
             return $this->values[$key]['value'];
38 38
         }
39 39
 
40
-        throw new \RuntimeException("Variable $variable does not exist");
40
+        throw new \RuntimeException("variable $variable does not exist");
41 41
     }
42 42
 
43 43
     public function getAllVariables()
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/Filesystem/Adapters/MultipleAdapter.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@
 block discarded – undo
36 36
             }
37 37
         }
38 38
 
39
-        throw new \RuntimeException("Key $key not found");
39
+        throw new \RuntimeException("key $key not found");
40 40
     }
41 41
     
42 42
     public function read($key)
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
@@ -118,7 +118,7 @@
 block discarded – undo
118 118
 
119 119
         $targetContent = $this->injectValues($file, $content, $environment, $replacementCounter);
120 120
 
121
-        $this->debug("Write $this->currentTargetFile");
121
+        $this->debug("write $this->currentTargetFile");
122 122
 
123 123
         if($this->dryRun === false)
124 124
         {
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.