@@ -106,14 +106,14 @@ |
||
106 | 106 | |
107 | 107 | return sprintf( |
108 | 108 | $reflectionFormat, |
109 | - $this->getDocComment() ? $this->getDocComment() . "\n" : '', |
|
109 | + $this->getDocComment() ? $this->getDocComment()."\n" : '', |
|
110 | 110 | $this->getName(), |
111 | 111 | $this->getFileName(), |
112 | 112 | $this->getStartLine(), |
113 | 113 | $this->getEndLine(), |
114 | 114 | count($this->getParameters()), |
115 | - array_reduce($this->getParameters(), function ($str, ReflectionParameter $param) { |
|
116 | - return $str . "\n " . $param; |
|
115 | + array_reduce($this->getParameters(), function($str, ReflectionParameter $param) { |
|
116 | + return $str."\n ".$param; |
|
117 | 117 | }, '') |
118 | 118 | ); |
119 | 119 | } |
@@ -26,7 +26,7 @@ |
||
26 | 26 | * Initializes reflection instance for given AST-node |
27 | 27 | * |
28 | 28 | * @param string|\Closure $functionName The name of the function to reflect or a closure. |
29 | - * @param Function_|null $functionNode Function node AST |
|
29 | + * @param Function_ $functionNode Function node AST |
|
30 | 30 | */ |
31 | 31 | public function __construct($functionName, Function_ $functionNode) |
32 | 32 | { |
@@ -50,7 +50,7 @@ |
||
50 | 50 | |
51 | 51 | $isRelative = !$pathScheme && ($path[0] !== '/') && ($path[1] !== ':'); |
52 | 52 | if ($isRelative) { |
53 | - $path = getcwd() . DIRECTORY_SEPARATOR . $path; |
|
53 | + $path = getcwd().DIRECTORY_SEPARATOR.$path; |
|
54 | 54 | } |
55 | 55 | |
56 | 56 | // resolve path parts (single dot, double dot and double delimiters) |
@@ -174,7 +174,7 @@ |
||
174 | 174 | /** |
175 | 175 | * Gets the specified return type of a function |
176 | 176 | * |
177 | - * @return \ReflectionType |
|
177 | + * @return null|ReflectionType |
|
178 | 178 | * |
179 | 179 | * @link http://php.net/manual/en/reflectionfunctionabstract.getreturntype.php |
180 | 180 | */ |
@@ -102,7 +102,7 @@ discard block |
||
102 | 102 | if ($this->functionLikeNode instanceof Function_ || $this->functionLikeNode instanceof ClassMethod) { |
103 | 103 | $functionName = $this->functionLikeNode->name->toString(); |
104 | 104 | |
105 | - return $this->namespaceName ? $this->namespaceName . '\\' . $functionName : $functionName; |
|
105 | + return $this->namespaceName ? $this->namespaceName.'\\'.$functionName : $functionName; |
|
106 | 106 | } |
107 | 107 | |
108 | 108 | return false; |
@@ -158,7 +158,7 @@ discard block |
||
158 | 158 | foreach ($this->functionLikeNode->getParams() as $parameterIndex => $parameterNode) { |
159 | 159 | $reflectionParameter = new ReflectionParameter( |
160 | 160 | $this->getName(), |
161 | - (string)$parameterNode->var->name, |
|
161 | + (string) $parameterNode->var->name, |
|
162 | 162 | $parameterNode, |
163 | 163 | $parameterIndex, |
164 | 164 | $this |
@@ -95,12 +95,12 @@ |
||
95 | 95 | $paramString = ''; |
96 | 96 | $identation = str_repeat(' ', 4); |
97 | 97 | foreach ($methodParameters as $methodParameter) { |
98 | - $paramString .= "\n{$identation}" . $methodParameter; |
|
98 | + $paramString .= "\n{$identation}".$methodParameter; |
|
99 | 99 | } |
100 | 100 | |
101 | 101 | return sprintf( |
102 | 102 | "%sMethod [ <user%s%s%s>%s%s%s %s method %s ] {\n @@ %s %d - %d{$paramFormat}{$returnFormat}\n}\n", |
103 | - $this->getDocComment() ? $this->getDocComment() . "\n" : '', |
|
103 | + $this->getDocComment() ? $this->getDocComment()."\n" : '', |
|
104 | 104 | $prototype ? ", overwrites {$prototypeClass}, prototype {$prototypeClass}" : '', |
105 | 105 | $this->isConstructor() ? ', ctor' : '', |
106 | 106 | $this->isDestructor() ? ', dtor' : '', |
@@ -10,7 +10,6 @@ |
||
10 | 10 | |
11 | 11 | namespace Go\ParserReflection\NodeVisitor; |
12 | 12 | |
13 | -use PhpParser\Node\Name\FullyQualified; |
|
14 | 13 | use PhpParser\Node\Stmt\Declare_; |
15 | 14 | use PhpParser\Node\Stmt\Namespace_; |
16 | 15 | use PhpParser\NodeVisitorAbstract; |
@@ -85,7 +85,7 @@ |
||
85 | 85 | 'int' => 'integer', |
86 | 86 | 'bool' => 'boolean' |
87 | 87 | ]; |
88 | - $displayType = (string)$type; |
|
88 | + $displayType = (string) $type; |
|
89 | 89 | if (isset($typeMap[$displayType])) { |
90 | 90 | $displayType = $typeMap[$displayType]; |
91 | 91 | } |
@@ -141,7 +141,7 @@ discard block |
||
141 | 141 | protected function resolveScalarMagicConstMethod() |
142 | 142 | { |
143 | 143 | if ($this->context instanceof \ReflectionMethod) { |
144 | - $fullName = $this->context->getDeclaringClass()->name . '::' . $this->context->getShortName(); |
|
144 | + $fullName = $this->context->getDeclaringClass()->name.'::'.$this->context->getShortName(); |
|
145 | 145 | |
146 | 146 | return $fullName; |
147 | 147 | } |
@@ -233,7 +233,7 @@ discard block |
||
233 | 233 | $fileNamespace = new ReflectionFileNamespace($fileName, $namespaceName); |
234 | 234 | if ($fileNamespace->hasConstant($constantName)) { |
235 | 235 | $constantValue = $fileNamespace->getConstant($constantName); |
236 | - $constantName = $fileNamespace->getName() . '\\' . $constantName; |
|
236 | + $constantName = $fileNamespace->getName().'\\'.$constantName; |
|
237 | 237 | $isResolved = true; |
238 | 238 | } |
239 | 239 | } |
@@ -260,7 +260,7 @@ discard block |
||
260 | 260 | $reason = 'Unable'; |
261 | 261 | if ($classToReflect instanceof Expr) { |
262 | 262 | $methodName = $this->getDispatchMethodFor($classToReflect); |
263 | - $reason = "Method " . __CLASS__ . "::{$methodName}() not found trying"; |
|
263 | + $reason = "Method ".__CLASS__."::{$methodName}() not found trying"; |
|
264 | 264 | } |
265 | 265 | throw new ReflectionException("$reason to resolve class constant."); |
266 | 266 | } |
@@ -277,7 +277,7 @@ discard block |
||
277 | 277 | } |
278 | 278 | |
279 | 279 | $this->isConstant = true; |
280 | - $this->constantName = (string)$classToReflect . '::' . $constantName; |
|
280 | + $this->constantName = (string) $classToReflect.'::'.$constantName; |
|
281 | 281 | |
282 | 282 | return $refClass->getConstant($constantName); |
283 | 283 | } |
@@ -361,7 +361,7 @@ discard block |
||
361 | 361 | |
362 | 362 | protected function resolveExprBinaryOpConcat(Expr\BinaryOp\Concat $node) |
363 | 363 | { |
364 | - return $this->resolve($node->left) . $this->resolve($node->right); |
|
364 | + return $this->resolve($node->left).$this->resolve($node->right); |
|
365 | 365 | } |
366 | 366 | |
367 | 367 | protected function resolveExprTernary(Expr\Ternary $node) |
@@ -445,7 +445,7 @@ discard block |
||
445 | 445 | private function getDispatchMethodFor(Node $node) |
446 | 446 | { |
447 | 447 | $nodeType = $node->getType(); |
448 | - return 'resolve' . str_replace('_', '', $nodeType); |
|
448 | + return 'resolve'.str_replace('_', '', $nodeType); |
|
449 | 449 | } |
450 | 450 | |
451 | 451 | /** |
@@ -160,6 +160,7 @@ |
||
160 | 160 | |
161 | 161 | /** |
162 | 162 | * @inheritDoc |
163 | + * @return string |
|
163 | 164 | */ |
164 | 165 | public function getName() |
165 | 166 | { |
@@ -121,7 +121,7 @@ discard block |
||
121 | 121 | public function ___debugInfo() |
122 | 122 | { |
123 | 123 | return array( |
124 | - 'name' => (string)$this->parameterNode->var->name, |
|
124 | + 'name' => (string) $this->parameterNode->var->name, |
|
125 | 125 | ); |
126 | 126 | } |
127 | 127 | |
@@ -139,11 +139,11 @@ discard block |
||
139 | 139 | if ($hasDefaultValue) { |
140 | 140 | $defaultValue = $this->getDefaultValue(); |
141 | 141 | if (is_string($defaultValue) && strlen($defaultValue) > 15) { |
142 | - $defaultValue = substr($defaultValue, 0, 15) . '...'; |
|
142 | + $defaultValue = substr($defaultValue, 0, 15).'...'; |
|
143 | 143 | } |
144 | 144 | /* @see https://3v4l.org/DJOEb for behaviour changes */ |
145 | 145 | if (is_double($defaultValue) && fmod($defaultValue, 1.0) === 0.0) { |
146 | - $defaultValue = (int)$defaultValue; |
|
146 | + $defaultValue = (int) $defaultValue; |
|
147 | 147 | } |
148 | 148 | |
149 | 149 | $defaultValue = str_replace('\\\\', '\\', var_export($defaultValue, true)); |
@@ -153,11 +153,11 @@ discard block |
||
153 | 153 | 'Parameter #%d [ %s %s%s%s$%s%s ]', |
154 | 154 | $this->parameterIndex, |
155 | 155 | $isOptional ? '<optional>' : '<required>', |
156 | - $parameterType ? ReflectionType::convertToDisplayType($parameterType) . ' ' : '', |
|
156 | + $parameterType ? ReflectionType::convertToDisplayType($parameterType).' ' : '', |
|
157 | 157 | $this->isVariadic() ? '...' : '', |
158 | 158 | $this->isPassedByReference() ? '&' : '', |
159 | 159 | $this->getName(), |
160 | - ($isOptional && $hasDefaultValue) ? (' = ' . $defaultValue) : '' |
|
160 | + ($isOptional && $hasDefaultValue) ? (' = '.$defaultValue) : '' |
|
161 | 161 | ); |
162 | 162 | } |
163 | 163 | |
@@ -207,7 +207,7 @@ discard block |
||
207 | 207 | |
208 | 208 | throw new ReflectionException("Can not resolve a class name for parameter"); |
209 | 209 | } |
210 | - $className = $parameterType->toString(); |
|
210 | + $className = $parameterType->toString(); |
|
211 | 211 | $classOrInterfaceExists = class_exists($className, false) || interface_exists($className, false); |
212 | 212 | |
213 | 213 | return $classOrInterfaceExists ? new \ReflectionClass($className) : new ReflectionClass($className); |
@@ -265,7 +265,7 @@ discard block |
||
265 | 265 | */ |
266 | 266 | public function getName() |
267 | 267 | { |
268 | - return (string)$this->parameterNode->var->name; |
|
268 | + return (string) $this->parameterNode->var->name; |
|
269 | 269 | } |
270 | 270 | |
271 | 271 | /** |