Skip to content

Commit ea68670

Browse files
committed
[FrameworkBundle] Check for class existence before is_subclass_of
1 parent a6c9489 commit ea68670

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

DependencyInjection/Compiler/AddConsoleCommandPass.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,10 @@ public function process(ContainerBuilder $container)
3838

3939
$class = $container->getParameterBag()->resolveValue($definition->getClass());
4040
if (!is_subclass_of($class, 'Symfony\\Component\\Console\\Command\\Command')) {
41+
if (!class_exists($class, false)) {
42+
throw new \InvalidArgumentException(sprintf('Class "%s" used for service "%s" cannot be found.', $class, $id));
43+
}
44+
4145
throw new \InvalidArgumentException(sprintf('The service "%s" tagged "console.command" must be a subclass of "Symfony\\Component\\Console\\Command\\Command".', $id));
4246
}
4347
$container->setAlias('console.command.'.strtolower(str_replace('\\', '_', $class)), $id);

0 commit comments

Comments
 (0)