1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-02-22 19:07:27 +01:00

[ticket/12602] Fix coding style mistakes.

PHPBB3-12602
This commit is contained in:
Etienne Baroux 2014-06-03 10:54:28 +02:00
parent 721a1d0bc4
commit 5aca27e8cf
3 changed files with 4 additions and 2 deletions

View File

@ -223,7 +223,7 @@ $lang = array_merge($lang, array(
'BACK' => 'Back',
'CLI_DESCRIPTION_CRON_LIST' => 'Print the cron list.',
'CLI_DESCRIPTION_CRON_LIST' => 'Print the cron list.',
'CLI_DESCRIPTION_CRON_RUN' => 'Runs all ready cron tasks.',
'CLI_DESCRIPTION_CRON_RUN_ARGUMENT_1' => 'Name of the task to be run',

View File

@ -88,3 +88,4 @@ class cron_list extends \phpbb\console\command\command
}
}
}

View File

@ -13,6 +13,7 @@
require_once dirname(__FILE__) . '/tasks/simple_ready.php';
require_once dirname(__FILE__) . '/tasks/simple_not_ready.php';
use Symfony\Component\Console\Application;
use Symfony\Component\Console\Tester\CommandTester;
use phpbb\console\command\cron\cron_list;
@ -99,4 +100,4 @@ class phpbb_console_command_cron_list_test extends phpbb_test_case
$this->command_tester = $this->get_command_tester();
$this->command_tester->execute(array('command' => $this->command_name, '--no-ansi' => true));
}
}
}