Passed
Push — master ( fc3af4...d0c1cf )
by Dmitry
02:48
created
src/Reflection/TypeResolver.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
             $type = $this->resolveClassName($type, $reflector->getDeclaringClass());
72 72
         }
73 73
 
74
-        return $type.($isCollection ? '[]' : '');
74
+        return $type . ($isCollection ? '[]' : '');
75 75
     }
76 76
 
77 77
     /**
@@ -117,7 +117,7 @@  discard block
 block discarded – undo
117 117
         $alias = strtolower($type);
118 118
 
119 119
         if (!isset($aliases[$alias])) {
120
-            return $usingClass->getNamespaceName().'\\'.$type;
120
+            return $usingClass->getNamespaceName() . '\\' . $type;
121 121
         }
122 122
 
123 123
         return $aliases[$alias];
Please login to merge, or discard this patch.