mirror of
https://github.com/opdavies/versa.git
synced 2025-03-10 04:41:51 +00:00
Fix autowiring error
This commit is contained in:
parent
52d933bc5e
commit
90e5e109e8
|
@ -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);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue