From 1f51e5b1b57d164e31d15e3e660c80909cf6d423 Mon Sep 17 00:00:00 2001 From: Stanislas Kita Date: Mon, 13 Oct 2025 09:23:23 +0200 Subject: [PATCH] Fix(Core): move command to 'plugins' namespace --- inc/checkdatabasecommand.class.php | 2 +- inc/command/regeneratefilescommand.class.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/inc/checkdatabasecommand.class.php b/inc/checkdatabasecommand.class.php index f5380d6e..758ac783 100644 --- a/inc/checkdatabasecommand.class.php +++ b/inc/checkdatabasecommand.class.php @@ -38,7 +38,7 @@ class PluginFieldsCheckDatabaseCommand extends AbstractCommand { protected function configure() { - $this->setName('plugin:fields:check_database'); + $this->setName('plugins:fields:check_database'); $this->setDescription(__('Check database to detect inconsistencies.', 'fields')); $this->setHelp( __('This command will check database to detect following inconsistencies:', 'fields') diff --git a/inc/command/regeneratefilescommand.class.php b/inc/command/regeneratefilescommand.class.php index b46cd343..ef69ca1c 100644 --- a/inc/command/regeneratefilescommand.class.php +++ b/inc/command/regeneratefilescommand.class.php @@ -37,7 +37,7 @@ class RegenerateFilesCommand extends AbstractCommand { protected function configure() { - $this->setName('plugin:fields:regenerate_files'); + $this->setName('plugins:fields:regenerate_files'); $this->setDescription(__('Regenerates containers files.', 'fields')); $this->setHelp( __('This command will clean up all files generated by the plugin and regenerate them.', 'fields'),