@@ -287,7 +287,7 @@ discard block |
||
287 | 287 | foreach ($this->namespaceNode->stmts as $namespaceLevelNode) { |
288 | 288 | if ($namespaceLevelNode instanceof Class_) { |
289 | 289 | $classShortName = $namespaceLevelNode->name; |
290 | - $className = $namespaceName ? $namespaceName .'\\' . $classShortName : $classShortName; |
|
290 | + $className = $namespaceName ? $namespaceName . '\\' . $classShortName : $classShortName; |
|
291 | 291 | |
292 | 292 | $namespaceLevelNode->setAttribute('fileName', $this->fileName); |
293 | 293 | $classes[$className] = new ReflectionClass($className, $namespaceLevelNode); |
@@ -311,7 +311,7 @@ discard block |
||
311 | 311 | foreach ($this->namespaceNode->stmts as $namespaceLevelNode) { |
312 | 312 | if ($namespaceLevelNode instanceof Function_) { |
313 | 313 | $funcShortName = $namespaceLevelNode->name; |
314 | - $functionName = $namespaceName ? $namespaceName .'\\' . $funcShortName : $funcShortName; |
|
314 | + $functionName = $namespaceName ? $namespaceName . '\\' . $funcShortName : $funcShortName; |
|
315 | 315 | |
316 | 316 | $namespaceLevelNode->setAttribute('fileName', $this->fileName); |
317 | 317 | $functions[$funcShortName] = new ReflectionFunction($functionName, $namespaceLevelNode); |
@@ -1,12 +1,12 @@ |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * Parser Reflection API |
|
4 | - * |
|
5 | - * @copyright Copyright 2015, Lisachenko Alexander <[email protected]> |
|
6 | - * |
|
7 | - * This source file is subject to the license that is bundled |
|
8 | - * with this source code in the file LICENSE. |
|
9 | - */ |
|
3 | + * Parser Reflection API |
|
4 | + * |
|
5 | + * @copyright Copyright 2015, Lisachenko Alexander <[email protected]> |
|
6 | + * |
|
7 | + * This source file is subject to the license that is bundled |
|
8 | + * with this source code in the file LICENSE. |
|
9 | + */ |
|
10 | 10 | |
11 | 11 | namespace Go\ParserReflection\ValueResolver; |
12 | 12 |
@@ -111,7 +111,7 @@ |
||
111 | 111 | $this->getStartLine(), |
112 | 112 | $this->getEndLine(), |
113 | 113 | count($this->getParameters()), |
114 | - array_reduce($this->getParameters(), function ($str, ReflectionParameter $param) { |
|
114 | + array_reduce($this->getParameters(), function($str, ReflectionParameter $param) { |
|
115 | 115 | return $str . "\n " . $param; |
116 | 116 | }, '') |
117 | 117 | ); |
@@ -1,12 +1,12 @@ |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * Parser Reflection API |
|
4 | - * |
|
5 | - * @copyright Copyright 2015, Lisachenko Alexander <[email protected]> |
|
6 | - * |
|
7 | - * This source file is subject to the license that is bundled |
|
8 | - * with this source code in the file LICENSE. |
|
9 | - */ |
|
3 | + * Parser Reflection API |
|
4 | + * |
|
5 | + * @copyright Copyright 2015, Lisachenko Alexander <[email protected]> |
|
6 | + * |
|
7 | + * This source file is subject to the license that is bundled |
|
8 | + * with this source code in the file LICENSE. |
|
9 | + */ |
|
10 | 10 | |
11 | 11 | namespace Go\ParserReflection\ValueResolver; |
12 | 12 |
@@ -58,7 +58,7 @@ |
||
58 | 58 | Property $propertyType = null, |
59 | 59 | PropertyProperty $propertyNode = null) |
60 | 60 | { |
61 | - $this->className = $className; |
|
61 | + $this->className = $className; |
|
62 | 62 | if (!$propertyType || !$propertyNode) { |
63 | 63 | list ($propertyType, $propertyNode) = ReflectionEngine::parseClassProperty($className, $propertyName); |
64 | 64 | } |
@@ -1,12 +1,12 @@ |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * Parser Reflection API |
|
4 | - * |
|
5 | - * @copyright Copyright 2015, Lisachenko Alexander <[email protected]> |
|
6 | - * |
|
7 | - * This source file is subject to the license that is bundled |
|
8 | - * with this source code in the file LICENSE. |
|
9 | - */ |
|
3 | + * Parser Reflection API |
|
4 | + * |
|
5 | + * @copyright Copyright 2015, Lisachenko Alexander <[email protected]> |
|
6 | + * |
|
7 | + * This source file is subject to the license that is bundled |
|
8 | + * with this source code in the file LICENSE. |
|
9 | + */ |
|
10 | 10 | |
11 | 11 | namespace Go\ParserReflection\ValueResolver; |
12 | 12 |
@@ -1,12 +1,12 @@ |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * Parser Reflection API |
|
4 | - * |
|
5 | - * @copyright Copyright 2015, Lisachenko Alexander <[email protected]> |
|
6 | - * |
|
7 | - * This source file is subject to the license that is bundled |
|
8 | - * with this source code in the file LICENSE. |
|
9 | - */ |
|
3 | + * Parser Reflection API |
|
4 | + * |
|
5 | + * @copyright Copyright 2015, Lisachenko Alexander <[email protected]> |
|
6 | + * |
|
7 | + * This source file is subject to the license that is bundled |
|
8 | + * with this source code in the file LICENSE. |
|
9 | + */ |
|
10 | 10 | |
11 | 11 | namespace Go\ParserReflection\ValueResolver; |
12 | 12 |
@@ -1,12 +1,12 @@ |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * Parser Reflection API |
|
4 | - * |
|
5 | - * @copyright Copyright 2015, Lisachenko Alexander <[email protected]> |
|
6 | - * |
|
7 | - * This source file is subject to the license that is bundled |
|
8 | - * with this source code in the file LICENSE. |
|
9 | - */ |
|
3 | + * Parser Reflection API |
|
4 | + * |
|
5 | + * @copyright Copyright 2015, Lisachenko Alexander <[email protected]> |
|
6 | + * |
|
7 | + * This source file is subject to the license that is bundled |
|
8 | + * with this source code in the file LICENSE. |
|
9 | + */ |
|
10 | 10 | |
11 | 11 | namespace Go\ParserReflection\ValueResolver; |
12 | 12 |
@@ -1,12 +1,12 @@ |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * Parser Reflection API |
|
4 | - * |
|
5 | - * @copyright Copyright 2015, Lisachenko Alexander <[email protected]> |
|
6 | - * |
|
7 | - * This source file is subject to the license that is bundled |
|
8 | - * with this source code in the file LICENSE. |
|
9 | - */ |
|
3 | + * Parser Reflection API |
|
4 | + * |
|
5 | + * @copyright Copyright 2015, Lisachenko Alexander <[email protected]> |
|
6 | + * |
|
7 | + * This source file is subject to the license that is bundled |
|
8 | + * with this source code in the file LICENSE. |
|
9 | + */ |
|
10 | 10 | |
11 | 11 | namespace Go\ParserReflection\ValueResolver; |
12 | 12 |
@@ -1,12 +1,12 @@ |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * Parser Reflection API |
|
4 | - * |
|
5 | - * @copyright Copyright 2015, Lisachenko Alexander <[email protected]> |
|
6 | - * |
|
7 | - * This source file is subject to the license that is bundled |
|
8 | - * with this source code in the file LICENSE. |
|
9 | - */ |
|
3 | + * Parser Reflection API |
|
4 | + * |
|
5 | + * @copyright Copyright 2015, Lisachenko Alexander <[email protected]> |
|
6 | + * |
|
7 | + * This source file is subject to the license that is bundled |
|
8 | + * with this source code in the file LICENSE. |
|
9 | + */ |
|
10 | 10 | |
11 | 11 | namespace Go\ParserReflection\ValueResolver; |
12 | 12 |
@@ -1,12 +1,12 @@ |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * Parser Reflection API |
|
4 | - * |
|
5 | - * @copyright Copyright 2015, Lisachenko Alexander <[email protected]> |
|
6 | - * |
|
7 | - * This source file is subject to the license that is bundled |
|
8 | - * with this source code in the file LICENSE. |
|
9 | - */ |
|
3 | + * Parser Reflection API |
|
4 | + * |
|
5 | + * @copyright Copyright 2015, Lisachenko Alexander <[email protected]> |
|
6 | + * |
|
7 | + * This source file is subject to the license that is bundled |
|
8 | + * with this source code in the file LICENSE. |
|
9 | + */ |
|
10 | 10 | |
11 | 11 | namespace Go\ParserReflection\ValueResolver; |
12 | 12 |
@@ -1,12 +1,12 @@ |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * Parser Reflection API |
|
4 | - * |
|
5 | - * @copyright Copyright 2015, Lisachenko Alexander <[email protected]> |
|
6 | - * |
|
7 | - * This source file is subject to the license that is bundled |
|
8 | - * with this source code in the file LICENSE. |
|
9 | - */ |
|
3 | + * Parser Reflection API |
|
4 | + * |
|
5 | + * @copyright Copyright 2015, Lisachenko Alexander <[email protected]> |
|
6 | + * |
|
7 | + * This source file is subject to the license that is bundled |
|
8 | + * with this source code in the file LICENSE. |
|
9 | + */ |
|
10 | 10 | |
11 | 11 | namespace Go\ParserReflection\ValueResolver; |
12 | 12 |