vendor/sylius/sylius/src/Sylius/Bundle/CoreBundle/SyliusCoreBundle.php line 26

Open in your IDE?
  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\CoreBundle;
  12. use Sylius\Bundle\CoreBundle\DependencyInjection\Compiler\BackwardsCompatibility\ResolveShopUserTargetEntityPass;
  13. use Sylius\Bundle\CoreBundle\DependencyInjection\Compiler\IgnoreAnnotationsPass;
  14. use Sylius\Bundle\CoreBundle\DependencyInjection\Compiler\LazyCacheWarmupPass;
  15. use Sylius\Bundle\CoreBundle\DependencyInjection\Compiler\RegisterTaxCalculationStrategiesPass;
  16. use Sylius\Bundle\CoreBundle\DependencyInjection\Compiler\RegisterUriBasedSectionResolverPass;
  17. use Sylius\Bundle\CoreBundle\DependencyInjection\Compiler\TranslatableEntityLocalePass;
  18. use Sylius\Bundle\ResourceBundle\AbstractResourceBundle;
  19. use Sylius\Bundle\ResourceBundle\SyliusResourceBundle;
  20. use Symfony\Component\DependencyInjection\ContainerBuilder;
  21. final class SyliusCoreBundle extends AbstractResourceBundle
  22. {
  23.     /**
  24.      * {@inheritdoc}
  25.      */
  26.     public function getSupportedDrivers(): array
  27.     {
  28.         return [
  29.             SyliusResourceBundle::DRIVER_DOCTRINE_ORM,
  30.         ];
  31.     }
  32.     /**
  33.      * {@inheritdoc}
  34.      */
  35.     public function build(ContainerBuilder $container): void
  36.     {
  37.         parent::build($container);
  38.         $container->addCompilerPass(new LazyCacheWarmupPass());
  39.         $container->addCompilerPass(new RegisterTaxCalculationStrategiesPass());
  40.         $container->addCompilerPass(new TranslatableEntityLocalePass());
  41.         $container->addCompilerPass(new IgnoreAnnotationsPass());
  42.         $container->addCompilerPass(new ResolveShopUserTargetEntityPass());
  43.         $container->addCompilerPass(new RegisterUriBasedSectionResolverPass());
  44.     }
  45.     /**
  46.      * {@inheritdoc}
  47.      */
  48.     protected function getModelNamespace(): string
  49.     {
  50.         return 'Sylius\Component\Core\Model';
  51.     }
  52. }