vendor/sylius/sylius/src/Sylius/Bundle/ShopBundle/SyliusShopBundle.php line 20

  1. <?php
  2. /*
  3.  * This file is part of the Sylius package.
  4.  *
  5.  * (c) Paweł Jędrzejewski
  6.  *
  7.  * For the full copyright and license information, please view the LICENSE
  8.  * file that was distributed with this source code.
  9.  */
  10. declare(strict_types=1);
  11. namespace Sylius\Bundle\ShopBundle;
  12. use Sylius\Bundle\ShopBundle\DependencyInjection\Compiler\LogoutListenerPass;
  13. use Symfony\Component\DependencyInjection\ContainerBuilder;
  14. use Symfony\Component\HttpKernel\Bundle\Bundle;
  15. final class SyliusShopBundle extends Bundle
  16. {
  17.     public function build(ContainerBuilder $container)
  18.     {
  19.         $container->addCompilerPass(new LogoutListenerPass());
  20.     }
  21. }