Fix autowiring error

This commit is contained in:
Oliver Davies 2024-02-23 16:21:15 +00:00
parent 52d933bc5e
commit 90e5e109e8

View file

@ -9,8 +9,8 @@ use Symfony\Component\Filesystem\Filesystem;
abstract class AbstractCommand extends Command abstract class AbstractCommand extends Command
{ {
public function __construct( public function __construct(
string $name,
protected Filesystem $filesystem, protected Filesystem $filesystem,
?string $name = null,
) { ) {
parent::__construct(name: $name); parent::__construct(name: $name);
} }