Skip to content

Commit

Permalink
Merge pull request #56 from thelia/lopes-vincent-fix-session
Browse files Browse the repository at this point in the history
Fix session paths
  • Loading branch information
lopes-vincent authored May 24, 2022
2 parents 00c004b + ebbf552 commit ff4e366
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/Kernel.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@

declare(strict_types=1);

/*
* This file is part of the Thelia package.
* http://www.thelia.net
*
* (c) OpenStudio <[email protected]>
*
* 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;
Expand All @@ -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');

Expand Down

0 comments on commit ff4e366

Please sign in to comment.