1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 05:50:42 +02:00

[feature/dic] Coding style: Braces

PHPBB3-10739
This commit is contained in:
Igor Wiedler
2012-08-25 16:43:41 +02:00
parent 7e44ca4d49
commit 4feb9aa8d7
5 changed files with 12 additions and 6 deletions

View File

@@ -46,7 +46,8 @@ class phpbb_cron_task_provider implements IteratorAggregate
foreach ($definitions as $name => $definition)
{
$task = $this->container->get($name);
if ($task instanceof phpbb_cron_task_base) {
if ($task instanceof phpbb_cron_task_base)
{
$task->set_name($name);
}