Skip to content

Commit cc796d4

Browse files
committed
Fallback to default helper set when no application loader is provided
1 parent d6ea162 commit cc796d4

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

src/Type/Symfony/CommandGetHelperDynamicReturnTypeExtension.php

+12-1
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,19 @@ public function getTypeFromMethodCall(MethodReflection $methodReflection, Method
5555
}
5656
$argName = $argStrings[0]->getValue();
5757

58+
$commands = $this->consoleApplicationResolver->findCommands($classReflection);
59+
if (count($commands) === 0) {
60+
$consoleApplication = new Application();
61+
62+
if ($consoleApplication->getHelperSet()->has($argName) === false) {
63+
return $defaultReturnType;
64+
}
65+
66+
return new ObjectType(get_class($consoleApplication->getHelperSet()->get($argName)));
67+
}
68+
5869
$returnTypes = [];
59-
foreach ($this->consoleApplicationResolver->findCommands($classReflection) as $command) {
70+
foreach ($commands as $command) {
6071
try {
6172
$command->mergeApplicationDefinition();
6273
$returnTypes[] = new ObjectType(get_class($command->getHelper($argName)));

0 commit comments

Comments
 (0)