aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/di/processor/ext.php
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/includes/di/processor/ext.php')
-rw-r--r--phpBB/includes/di/processor/ext.php6
1 files changed, 4 insertions, 2 deletions
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');
}