Skip to content

Commit 7399c4f

Browse files
committed
Fix a bug
1 parent 6b7692e commit 7399c4f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Utilities/TypeResolver.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ public static function getExtendedClasses($class): array
183183
$result = [];
184184
foreach (Formatter::parseSignature($class) as $signature) {
185185
if ($signature['type'] !== 'class') {
186-
$result[] = $signature['type'];
186+
$result[] = [$signature['type']];
187187
continue;
188188
}
189189
$path = [];

0 commit comments

Comments
 (0)