[ticket/17347] Change command to be called user:delete_id

PHPBB-17347
This commit is contained in:
Marc Alexander 2024-06-21 21:12:38 +02:00
parent d875eaa405
commit 7f9bcc2743
No known key found for this signature in database
GPG key ID: 50E0D2423696F995
2 changed files with 2 additions and 2 deletions

View file

@ -94,7 +94,7 @@ class delete_id extends command
protected function configure(): void protected function configure(): void
{ {
$this $this
->setName('user:delete_ids') ->setName('user:delete_id')
->setDescription($this->language->lang('CLI_DESCRIPTION_USER_DELETE_ID')) ->setDescription($this->language->lang('CLI_DESCRIPTION_USER_DELETE_ID'))
->addArgument( ->addArgument(
'user_ids', 'user_ids',

View file

@ -35,7 +35,7 @@ class phpbb_console_user_delete_ids_test extends phpbb_console_user_base
$this->php_ext $this->php_ext
)); ));
$command = $application->find('user:delete_ids'); $command = $application->find('user:delete_id');
$this->command_name = $command->getName(); $this->command_name = $command->getName();
$this->question = $command->getHelper('question'); $this->question = $command->getHelper('question');