Skip to content

Commit

Permalink
Merge pull request #61 from ezsystems/ibx-5827-string-interpolation
Browse files Browse the repository at this point in the history
IBX-5827: Replaced deprecated string interpolation (PHP 8.2+)
  • Loading branch information
Nattfarinn authored Dec 7, 2023
2 parents c258a14 + 235651e commit 5e859f2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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');
}
Expand Down

0 comments on commit 5e859f2

Please sign in to comment.