aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/console
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/phpbb/console')
-rw-r--r--phpBB/phpbb/console/command/cron/run_all.php (renamed from phpBB/phpbb/console/command/cron/execute_all.php)4
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/phpbb/console/command/cron/execute_all.php b/phpBB/phpbb/console/command/cron/run_all.php
index f7157f4d3a..39b3e0c616 100644
--- a/phpBB/phpbb/console/command/cron/execute_all.php
+++ b/phpBB/phpbb/console/command/cron/run_all.php
@@ -12,7 +12,7 @@ use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Input\InputOption;
use Symfony\Component\Console\Output\OutputInterface;
-class execute_all extends \phpbb\console\command\command
+class run_all extends \phpbb\console\command\command
{
/** @var \phpbb\cron\manager */
protected $cron_manager;
@@ -47,7 +47,7 @@ class execute_all extends \phpbb\console\command\command
protected function configure()
{
$this
- ->setName('cron:execute-all')
+ ->setName('cron:run-all')
->setDescription($this->user->lang('CLI_DESCR_CRON_EXECUTE_ALL'))
;
}