@@ -85,7 +85,7 @@ discard block |
||
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 |
||
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 | } |