We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca904c8 commit 0bc691bCopy full SHA for 0bc691b
1 file changed
src/Commands/AutowireTrait.php
@@ -40,6 +40,7 @@ public static function create(ContainerInterface $container)
40
$args[] = $container->get($service);
41
}
42
43
- return new self(...$args);
+ // @phpstan-ignore-next-line new.static
44
+ return new static(...$args);
45
46
0 commit comments