@@ -1,5 +1,5 @@ discard block |
||
1 | 1 | <?php |
2 | -declare(strict_types=1); |
|
2 | +declare(strict_types = 1); |
|
3 | 3 | |
4 | 4 | namespace TheCodingMachine\PHPStan\Rules\TypeHints; |
5 | 5 | |
@@ -174,9 +174,9 @@ discard block |
||
174 | 174 | foreach ($docblockWithoutNullable as $docblockTypehint) { |
175 | 175 | if (!$docblockTypehint instanceof Array_) { |
176 | 176 | if ($context instanceof ReflectionParameter) { |
177 | - return sprintf('%s, mismatching type-hints for parameter %s. PHP type hint is "array" and docblock type hint is %s.', $this->getContext($context), $context->getName(), (string)$docblockTypehint); |
|
177 | + return sprintf('%s, mismatching type-hints for parameter %s. PHP type hint is "array" and docblock type hint is %s.', $this->getContext($context), $context->getName(), (string) $docblockTypehint); |
|
178 | 178 | } else { |
179 | - return sprintf('%s, mismatching type-hints for return type. PHP type hint is "array" and docblock declared return type is %s.', $this->getContext($context), (string)$docblockTypehint); |
|
179 | + return sprintf('%s, mismatching type-hints for return type. PHP type hint is "array" and docblock declared return type is %s.', $this->getContext($context), (string) $docblockTypehint); |
|
180 | 180 | } |
181 | 181 | } |
182 | 182 | |
@@ -244,11 +244,11 @@ discard block |
||
244 | 244 | $type = $types[0]; |
245 | 245 | |
246 | 246 | if ($this->isNativeType($type)) { |
247 | - return ($isNullable?'?':'').((string)$type); |
|
247 | + return ($isNullable ? '?' : '').((string) $type); |
|
248 | 248 | } |
249 | 249 | |
250 | 250 | if ($type instanceof Array_) { |
251 | - return ($isNullable?'?':'').'array'; |
|
251 | + return ($isNullable ? '?' : '').'array'; |
|
252 | 252 | } |
253 | 253 | |
254 | 254 | // TODO: more definitions to add here |
@@ -256,7 +256,7 @@ discard block |
||
256 | 256 | // Manage array of things => (cast to array) |
257 | 257 | |
258 | 258 | if ($type instanceof Object_) { |
259 | - return ($isNullable?'?':'').((string)$type); |
|
259 | + return ($isNullable ? '?' : '').((string) $type); |
|
260 | 260 | } |
261 | 261 | |
262 | 262 | return null; |