Completed
Push — master ( f2b8d4...d5ed0b )
by David
10s
created
src/Rules/TypeHints/AbstractMissingTypeHintRule.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace TheCodingMachine\PHPStan\Rules\TypeHints;
5 5
 
@@ -187,9 +187,9 @@  discard block
 block discarded – undo
187 187
             foreach ($docblockWithoutNullable as $docblockTypehint) {
188 188
                 if (!$docblockTypehint instanceof Array_) {
189 189
                     if ($context instanceof ReflectionParameter) {
190
-                        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);
190
+                        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);
191 191
                     } else {
192
-                        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);
192
+                        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);
193 193
                     }
194 194
                 }
195 195
 
@@ -276,11 +276,11 @@  discard block
 block discarded – undo
276 276
         $type = $types[0];
277 277
 
278 278
         if ($this->isNativeType($type)) {
279
-            return ($isNullable?'?':'').((string)$type);
279
+            return ($isNullable ? '?' : '').((string) $type);
280 280
         }
281 281
 
282 282
         if ($type instanceof Array_) {
283
-            return ($isNullable?'?':'').'array';
283
+            return ($isNullable ? '?' : '').'array';
284 284
         }
285 285
 
286 286
         // TODO: more definitions to add here
@@ -288,7 +288,7 @@  discard block
 block discarded – undo
288 288
         // Manage array of things => (cast to array)
289 289
 
290 290
         if ($type instanceof Object_) {
291
-            return ($isNullable?'?':'').((string)$type);
291
+            return ($isNullable ? '?' : '').((string) $type);
292 292
         }
293 293
 
294 294
         return null;
@@ -331,7 +331,7 @@  discard block
 block discarded – undo
331 331
      */
332 332
     private function typesWithoutNullable(array $docBlockTypeHints): array
333 333
     {
334
-        return array_values(array_filter($docBlockTypeHints, function ($item) {
334
+        return array_values(array_filter($docBlockTypeHints, function($item) {
335 335
             return !$item instanceof Null_;
336 336
         }));
337 337
     }
Please login to merge, or discard this patch.