src/Sylius/Bundle/PromotionBundle/SyliusPromotionBundle.php line 24

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\PromotionBundle;
  12. use Sylius\Bundle\PromotionBundle\DependencyInjection\Compiler\CompositePromotionCouponEligibilityCheckerPass;
  13. use Sylius\Bundle\PromotionBundle\DependencyInjection\Compiler\CompositePromotionEligibilityCheckerPass;
  14. use Sylius\Bundle\PromotionBundle\DependencyInjection\Compiler\RegisterPromotionActionsPass;
  15. use Sylius\Bundle\PromotionBundle\DependencyInjection\Compiler\RegisterRuleCheckersPass;
  16. use Sylius\Bundle\ResourceBundle\AbstractResourceBundle;
  17. use Sylius\Bundle\ResourceBundle\SyliusResourceBundle;
  18. use Symfony\Component\DependencyInjection\ContainerBuilder;
  19. final class SyliusPromotionBundle extends AbstractResourceBundle
  20. {
  21.     /**
  22.      * {@inheritdoc}
  23.      */
  24.     public function getSupportedDrivers(): array
  25.     {
  26.         return [
  27.             SyliusResourceBundle::DRIVER_DOCTRINE_ORM,
  28.         ];
  29.     }
  30.     /**
  31.      * {@inheritdoc}
  32.      */
  33.     public function build(ContainerBuilder $container): void
  34.     {
  35.         parent::build($container);
  36.         $container->addCompilerPass(new CompositePromotionEligibilityCheckerPass());
  37.         $container->addCompilerPass(new CompositePromotionCouponEligibilityCheckerPass());
  38.         $container->addCompilerPass(new RegisterRuleCheckersPass());
  39.         $container->addCompilerPass(new RegisterPromotionActionsPass());
  40.     }
  41.     /**
  42.      * {@inheritdoc}
  43.      */
  44.     protected function getModelNamespace(): string
  45.     {
  46.         return 'Sylius\Component\Promotion\Model';
  47.     }
  48. }