@@ -14,6 +14,9 @@ |
||
14 | 14 | $isRegex, |
15 | 15 | $filter; |
16 | 16 | |
17 | + /** |
|
18 | + * @param string $filter |
|
19 | + */ |
|
17 | 20 | public function __construct($filter, \Iterator $iterator) |
18 | 21 | { |
19 | 22 | parent::__construct($iterator); |
@@ -61,7 +61,7 @@ |
||
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 | )); |
@@ -99,7 +99,7 @@ |
||
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 | } |
@@ -101,6 +101,11 @@ discard block |
||
101 | 101 | } |
102 | 102 | } |
103 | 103 | |
104 | + /** |
|
105 | + * @param string|boolean $content |
|
106 | + * |
|
107 | + * @return string |
|
108 | + */ |
|
104 | 109 | private function injectValues($sourceFile, $content, $environment) |
105 | 110 | { |
106 | 111 | $formatter = $this->formatterProvider->getFormatter(); |
@@ -118,6 +123,9 @@ discard block |
||
118 | 123 | return $targetContent; |
119 | 124 | } |
120 | 125 | |
126 | + /** |
|
127 | + * @param string $targetFile |
|
128 | + */ |
|
121 | 129 | private function backupFile($targetFile) |
122 | 130 | { |
123 | 131 | if($this->enableBackup === true) |
@@ -56,7 +56,7 @@ |
||
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 | } |
@@ -65,6 +65,9 @@ discard block |
||
65 | 65 | return $this; |
66 | 66 | } |
67 | 67 | |
68 | + /** |
|
69 | + * @param string $masterFilePath |
|
70 | + */ |
|
68 | 71 | public function parse($masterFilePath) |
69 | 72 | { |
70 | 73 | try |
@@ -182,6 +185,9 @@ discard block |
||
182 | 185 | return $groupName; |
183 | 186 | } |
184 | 187 | |
188 | + /** |
|
189 | + * @param string $groupName |
|
190 | + */ |
|
185 | 191 | private function switchGroupParser($groupName) |
186 | 192 | { |
187 | 193 | if(! isset($this->parsers[$groupName])) |
@@ -221,9 +221,9 @@ |
||
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); |