From 235651e493d1c79eadc3fb26fb22506b89307a3d Mon Sep 17 00:00:00 2001 From: Nattfarinn Date: Tue, 3 Oct 2023 10:13:32 +0200 Subject: [PATCH] IBX-5827: Replaced deprecated string interpolation (PHP 8.2+) --- .../bundle/DependencyInjection/EzPlatformCoreExtension.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/EzPlatformCoreBundle/bundle/DependencyInjection/EzPlatformCoreExtension.php b/src/EzPlatformCoreBundle/bundle/DependencyInjection/EzPlatformCoreExtension.php index e95645c..38e1dae 100644 --- a/src/EzPlatformCoreBundle/bundle/DependencyInjection/EzPlatformCoreExtension.php +++ b/src/EzPlatformCoreBundle/bundle/DependencyInjection/EzPlatformCoreExtension.php @@ -123,7 +123,7 @@ private function configureGenericSetup(ContainerBuilder $container): void // Cache settings // If CACHE_POOL env variable is set, check if there is a yml file that needs to be loaded for it - if (($pool = $_SERVER['CACHE_POOL'] ?? false) && file_exists($projectDir . "/config/packages/cache_pool/${pool}.yaml")) { + if (($pool = $_SERVER['CACHE_POOL'] ?? false) && file_exists($projectDir . "/config/packages/cache_pool/{$pool}.yaml")) { $loader = new Loader\YamlFileLoader($container, new FileLocator($projectDir . '/config/packages/cache_pool')); $loader->load($pool . '.yaml'); }