diff --git a/src/Console/Command/AbstractCommand.php b/src/Console/Command/AbstractCommand.php index 83cc41f..15e0e4f 100644 --- a/src/Console/Command/AbstractCommand.php +++ b/src/Console/Command/AbstractCommand.php @@ -9,8 +9,8 @@ use Symfony\Component\Filesystem\Filesystem; abstract class AbstractCommand extends Command { public function __construct( - string $name, protected Filesystem $filesystem, + ?string $name = null, ) { parent::__construct(name: $name); }