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/di/processor | |
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/di/processor')
-rw-r--r-- | phpBB/includes/di/processor/config.php | 3 | ||||
-rw-r--r-- | phpBB/includes/di/processor/ext.php | 6 |
2 files changed, 6 insertions, 3 deletions
diff --git a/phpBB/includes/di/processor/config.php b/phpBB/includes/di/processor/config.php index 45b750c31e..1a5ec15854 100644 --- a/phpBB/includes/di/processor/config.php +++ b/phpBB/includes/di/processor/config.php @@ -52,7 +52,8 @@ class phpbb_di_processor_config implements phpbb_di_processor_interface protected function fix_acm_type($acm_type) { - if (preg_match('#^[a-z]+$#', $acm_type)) { + if (preg_match('#^[a-z]+$#', $acm_type)) + { return 'phpbb_cache_driver_'.$acm_type; } diff --git a/phpBB/includes/di/processor/ext.php b/phpBB/includes/di/processor/ext.php index b39ba5e686..04a586a086 100644 --- a/phpBB/includes/di/processor/ext.php +++ b/phpBB/includes/di/processor/ext.php @@ -31,8 +31,10 @@ class phpbb_di_processor_ext implements phpbb_di_processor_interface public function process(ContainerBuilder $container) { $enabled_exts = $this->extension_manager->all_enabled(); - foreach ($enabled_exts as $name => $path) { - if (file_exists($path . '/config/services.yml')) { + foreach ($enabled_exts as $name => $path) + { + if (file_exists($path . '/config/services.yml')) + { $loader = new YamlFileLoader($container, new FileLocator($path . '/config')); $loader->load('services.yml'); } |