1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-30 21:40:43 +02:00

[ticket/12597] Update pull-request

Removes a useless comment.
Switchs command name from cron:execute-all to cron:run-all.
Replaces assertEquals by assertSame

PHPBB3-12597
This commit is contained in:
LEZY Thomas
2014-05-28 14:39:02 +02:00
parent 9761c1bf61
commit 6f279c1bf4
4 changed files with 13 additions and 14 deletions

View File

@@ -46,8 +46,8 @@ services:
tags:
- { name: console.command }
console.command.cron.execute_all:
class: phpbb\console\command\cron\execute_all
console.command.cron.run_all:
class: phpbb\console\command\cron\run_all
arguments:
- @cron.manager
- @cron.lock_db

View File

@@ -50,7 +50,6 @@ if ($cron_lock->acquire())
{
$cron = $phpbb_container->get('cron.manager');
// If invalid task is specified, empty $run_tasks is passed to do_cron which then does nothing
$task = $cron->find_task($cron_type);
if ($task)
{

View File

@@ -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'))
;
}