[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', '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' => 'Runs all ready cron tasks.',
'CLI_DESCRIPTION_CRON_RUN_ARGUMENT_1' => 'Name of the task to be run', '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_ready.php';
require_once dirname(__FILE__) . '/tasks/simple_not_ready.php'; require_once dirname(__FILE__) . '/tasks/simple_not_ready.php';
use Symfony\Component\Console\Application; use Symfony\Component\Console\Application;
use Symfony\Component\Console\Tester\CommandTester; use Symfony\Component\Console\Tester\CommandTester;
use phpbb\console\command\cron\cron_list; use phpbb\console\command\cron\cron_list;