From ebbf552e52c1bbb4cca76d6524eaa16cad9aaa23 Mon Sep 17 00:00:00 2001 From: Vincent Lopes-Vicente Date: Tue, 24 May 2022 15:12:52 +0200 Subject: [PATCH] Fix session paths --- src/Kernel.php | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/Kernel.php b/src/Kernel.php index f2e4985..460a545 100644 --- a/src/Kernel.php +++ b/src/Kernel.php @@ -2,6 +2,16 @@ declare(strict_types=1); +/* + * This file is part of the Thelia package. + * http://www.thelia.net + * + * (c) OpenStudio + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + namespace App; use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator; @@ -12,6 +22,8 @@ class Kernel extends Thelia { protected function configureContainer(ContainerConfigurator $container): void { + parent::configureContainer($container); + $container->import('../config/{packages}/*.yaml'); $container->import('../config/{packages}/'.$this->environment.'/*.yaml');