@@ -169,7 +169,8 @@ |
||
169 | 169 | $this->Tags[] = $Tag; |
170 | 170 | } |
171 | 171 | |
172 | - if ($command === 'api') { // backwards compatibility |
|
172 | + if ($command === 'api') { |
|
173 | +// backwards compatibility |
|
173 | 174 | $this->defaultTag = $Tag; |
174 | 175 | } |
175 | 176 | return $Tag; |
@@ -10,7 +10,8 @@ |
||
10 | 10 | * @copyright 2014-2015 Martijn van der Lee |
11 | 11 | * @license https://opensource.org/licenses/MIT MIT |
12 | 12 | */ |
13 | -interface IParameter { |
|
13 | +interface IParameter |
|
14 | +{ |
|
14 | 15 | |
15 | 16 | public function getName(); |
16 | 17 | } |
@@ -69,7 +69,8 @@ discard block |
||
69 | 69 | } |
70 | 70 | } |
71 | 71 | |
72 | - private function extractStatements() { |
|
72 | + private function extractStatements() |
|
73 | + { |
|
73 | 74 | // Core comments |
74 | 75 | $Statements = $this->Statements; |
75 | 76 | |
@@ -215,7 +216,8 @@ discard block |
||
215 | 216 | } |
216 | 217 | } |
217 | 218 | |
218 | - private function parseTokens($source) { |
|
219 | + private function parseTokens($source) |
|
220 | + { |
|
219 | 221 | $mode = null; |
220 | 222 | $namespace = ''; |
221 | 223 | |
@@ -340,7 +342,8 @@ discard block |
||
340 | 342 | |
341 | 343 | $match = null; |
342 | 344 | foreach ($Statements as $Statement) { |
343 | - if ($Statement->command === 'uses' || $Statement->command === 'see') { //@todo either one, not both? |
|
345 | + if ($Statement->command === 'uses' || $Statement->command === 'see') { |
|
346 | +//@todo either one, not both? |
|
344 | 347 | if (preg_match('/^((?:\\w+)|\$this)(?:(::|->)(\\w+))?(?:\\(\\))?$/', strtolower($Statement->data), $match) === 1) { |
345 | 348 | if (count($match) >= 3) { |
346 | 349 | $Class = null; |