@@ -130,7 +130,7 @@ |
||
130 | 130 | ...@@...@@.. |
131 | 131 | ...@@....@@. |
132 | 132 | |
133 | -ASCIIART; |
|
133 | +asciiart; |
|
134 | 134 | |
135 | 135 | $background = 'fg=magenta'; |
136 | 136 | $text = 'fg=white'; |
@@ -37,7 +37,7 @@ |
||
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() |
@@ -178,7 +178,7 @@ |
||
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 | { |
@@ -36,7 +36,7 @@ |
||
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) |
@@ -118,7 +118,7 @@ |
||
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 | { |
@@ -42,13 +42,13 @@ |
||
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 | } |