From 24b675ce9775ed814eef5efb4d9e11bde99aba7c Mon Sep 17 00:00:00 2001 From: Pol Dellaiera Date: Tue, 10 Aug 2021 15:41:04 +0200 Subject: [PATCH] Fix path to services.php. --- .../src/DependencyInjection/ChillWopiExtension.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Bundle/ChillWopiBundle/src/DependencyInjection/ChillWopiExtension.php b/src/Bundle/ChillWopiBundle/src/DependencyInjection/ChillWopiExtension.php index b750a1626..3bc31f507 100644 --- a/src/Bundle/ChillWopiBundle/src/DependencyInjection/ChillWopiExtension.php +++ b/src/Bundle/ChillWopiBundle/src/DependencyInjection/ChillWopiExtension.php @@ -24,7 +24,7 @@ final class ChillWopiExtension extends Extension $this->processConfiguration(new Configuration(), $configs) ); - $loader = new PhpFileLoader($container, new FileLocator(__DIR__ . '/../Resources')); + $loader = new PhpFileLoader($container, new FileLocator(__DIR__ . '/../Resources/config')); $loader->load('services.php'); } }