@@ -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); |
@@ -40,7 +40,7 @@ discard block |
||
40 | 40 | |
41 | 41 | public function setDefaultEnvironment($environment) |
42 | 42 | { |
43 | - if(! empty($environment) && is_string($environment)) |
|
43 | + if( ! empty($environment) && is_string($environment)) |
|
44 | 44 | { |
45 | 45 | $this->defaultEnvironment = $environment; |
46 | 46 | } |
@@ -88,7 +88,7 @@ discard block |
||
88 | 88 | |
89 | 89 | private function handleCustomData($value) |
90 | 90 | { |
91 | - if(! is_string($value)) |
|
91 | + if( ! is_string($value)) |
|
92 | 92 | { |
93 | 93 | return $value; |
94 | 94 | } |
@@ -26,7 +26,7 @@ |
||
26 | 26 | |
27 | 27 | private function checkFilenameIsValid($filename) |
28 | 28 | { |
29 | - if(! preg_match('~.*\.conf$~', $filename)) |
|
29 | + if( ! preg_match('~.*\.conf$~', $filename)) |
|
30 | 30 | { |
31 | 31 | $this->triggerError("$filename is not a valid file name", 'Invalid dependency'); |
32 | 32 | } |
@@ -42,7 +42,7 @@ |
||
42 | 42 | { |
43 | 43 | if($verbosity <= $this->output->getVerbosity()) |
44 | 44 | { |
45 | - if(! is_array($messages)) |
|
45 | + if( ! is_array($messages)) |
|
46 | 46 | { |
47 | 47 | $messages = array($messages); |
48 | 48 | } |
@@ -123,7 +123,7 @@ |
||
123 | 123 | $titleLineNumber = count($lines); |
124 | 124 | |
125 | 125 | // ensure an empty line preceeds comment |
126 | - if(! empty($lines[$titleLineNumber - 1])) |
|
126 | + if( ! empty($lines[$titleLineNumber - 1])) |
|
127 | 127 | { |
128 | 128 | $lines[$titleLineNumber] = ''; |
129 | 129 | $titleLineNumber++; |
@@ -64,7 +64,7 @@ |
||
64 | 64 | $rootPath = ''; |
65 | 65 | } |
66 | 66 | |
67 | - if(! empty($rootPath)) |
|
67 | + if( ! empty($rootPath)) |
|
68 | 68 | { |
69 | 69 | $rootPath .= $directorySeparator; |
70 | 70 | } |
@@ -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])) |
@@ -47,7 +47,7 @@ discard block |
||
47 | 47 | |
48 | 48 | public function enableIncludeSupport() |
49 | 49 | { |
50 | - if(! isset($this->parsers[self::INCLUDES])) |
|
50 | + if( ! isset($this->parsers[self::INCLUDES])) |
|
51 | 51 | { |
52 | 52 | $this->parsers[self::INCLUDES] = new IncludeParser(); |
53 | 53 | } |
@@ -57,7 +57,7 @@ discard block |
||
57 | 57 | |
58 | 58 | public function enableExternalSupport() |
59 | 59 | { |
60 | - if(! isset($this->parsers[self::EXTERNALS])) |
|
60 | + if( ! isset($this->parsers[self::EXTERNALS])) |
|
61 | 61 | { |
62 | 62 | $this->parsers[self::EXTERNALS] = new ExternalParser(new Parser($this->fs)); |
63 | 63 | } |
@@ -87,7 +87,7 @@ discard block |
||
87 | 87 | { |
88 | 88 | $files = array($masterFilePath); |
89 | 89 | |
90 | - while(! empty($files)) |
|
90 | + while( ! empty($files)) |
|
91 | 91 | { |
92 | 92 | foreach($files as $file) |
93 | 93 | { |
@@ -133,7 +133,7 @@ discard block |
||
133 | 133 | |
134 | 134 | private function extractLines($filePath) |
135 | 135 | { |
136 | - if(! $this->fs->has($filePath)) |
|
136 | + if( ! $this->fs->has($filePath)) |
|
137 | 137 | { |
138 | 138 | throw new \RuntimeException("$filePath does not exist"); |
139 | 139 | } |
@@ -184,7 +184,7 @@ discard block |
||
184 | 184 | |
185 | 185 | private function switchGroupParser($groupName) |
186 | 186 | { |
187 | - if(! isset($this->parsers[$groupName])) |
|
187 | + if( ! isset($this->parsers[$groupName])) |
|
188 | 188 | { |
189 | 189 | throw new \RuntimeException('Unknown group name ' . $groupName); |
190 | 190 | } |
@@ -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) |
@@ -154,7 +154,7 @@ |
||
154 | 154 | |
155 | 155 | $this['vcs'] = $this['git']; |
156 | 156 | |
157 | - $this['vcsHandler'] = $this->protect(function (Vcs $vcs) { |
|
157 | + $this['vcsHandler'] = $this->protect(function(Vcs $vcs) { |
|
158 | 158 | $handler = new VcsHandler($vcs, $this['finder']); |
159 | 159 | |
160 | 160 | $handler->setLogger($this['logger']) |