diff --git a/src/Command/ActivatePaymentCommand.php b/src/Command/ActivatePaymentCommand.php index fb7973f..70b8ef8 100644 --- a/src/Command/ActivatePaymentCommand.php +++ b/src/Command/ActivatePaymentCommand.php @@ -31,6 +31,7 @@ public function __construct( protected function configure(): void { + $this->setName(self::$defaultName); $this->setDescription('Adds Mondu Payment methods to the sales channels.'); } diff --git a/src/Command/ConfigApiTokenCommand.php b/src/Command/ConfigApiTokenCommand.php index 123ab31..48cf928 100644 --- a/src/Command/ConfigApiTokenCommand.php +++ b/src/Command/ConfigApiTokenCommand.php @@ -20,6 +20,7 @@ public function __construct( protected function configure(): void { + $this->setName(self::$defaultName); $this->setDescription('Adds API token to plugin configuration.'); $this->addArgument( 'api_token', diff --git a/src/Command/TestApiTokenCommand.php b/src/Command/TestApiTokenCommand.php index f9c4196..2e3279d 100644 --- a/src/Command/TestApiTokenCommand.php +++ b/src/Command/TestApiTokenCommand.php @@ -21,6 +21,7 @@ public function __construct( protected function configure(): void { + $this->setName(self::$defaultName); $this->setDescription('Tests if API token is valid.'); $this->addArgument( 'api_token',