diff options
author | Igor Wiedler <igor@wiedler.ch> | 2012-08-25 16:43:41 +0200 |
---|---|---|
committer | Igor Wiedler <igor@wiedler.ch> | 2012-08-25 16:43:41 +0200 |
commit | 4feb9aa8d7bda303b62acec924008f75042eb757 (patch) | |
tree | f1f02fa2afeef9c001a78132423d68a3eae96b4c /phpBB/includes/cron/task | |
parent | 7e44ca4d49a53b81ee1365282ae5f86cd32e7e4a (diff) | |
download | forums-4feb9aa8d7bda303b62acec924008f75042eb757.tar forums-4feb9aa8d7bda303b62acec924008f75042eb757.tar.gz forums-4feb9aa8d7bda303b62acec924008f75042eb757.tar.bz2 forums-4feb9aa8d7bda303b62acec924008f75042eb757.tar.xz forums-4feb9aa8d7bda303b62acec924008f75042eb757.zip |
[feature/dic] Coding style: Braces
PHPBB3-10739
Diffstat (limited to 'phpBB/includes/cron/task')
-rw-r--r-- | phpBB/includes/cron/task/provider.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/phpBB/includes/cron/task/provider.php b/phpBB/includes/cron/task/provider.php index 6adac77eb8..134723ebd1 100644 --- a/phpBB/includes/cron/task/provider.php +++ b/phpBB/includes/cron/task/provider.php @@ -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); } |