Completed
Pull Request — master (#81)
by Loren
02:02
created
src/ReflectionType.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -85,7 +85,7 @@  discard block
 block discarded – undo
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
         }
@@ -108,9 +108,9 @@  discard block
 block discarded – undo
108 108
     public function wasIncluded()
109 109
     {
110 110
         return
111
-            $this->isBuiltin()                   ||
111
+            $this->isBuiltin() ||
112 112
             interface_exists($this->type, false) ||
113
-            trait_exists($this->type,     false) ||
114
-            class_exists($this->type,     false);
113
+            trait_exists($this->type, false) ||
114
+            class_exists($this->type, false);
115 115
     }
116 116
 }
Please login to merge, or discard this patch.