vendor/sylius/sylius/src/Sylius/Bundle/PaymentBundle/SyliusPaymentBundle.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\PaymentBundle;
  12. use Sylius\Bundle\PaymentBundle\DependencyInjection\Compiler\RegisterPaymentMethodsResolversPass;
  13. use Sylius\Bundle\ResourceBundle\AbstractResourceBundle;
  14. use Sylius\Bundle\ResourceBundle\SyliusResourceBundle;
  15. use Symfony\Component\DependencyInjection\ContainerBuilder;
  16. /**
  17. * Payments component for Symfony applications.
  18. */
  19. final class SyliusPaymentBundle extends AbstractResourceBundle
  20. {
  21. public function getSupportedDrivers(): array
  22. {
  23. return [
  24. SyliusResourceBundle::DRIVER_DOCTRINE_ORM,
  25. ];
  26. }
  27. public function build(ContainerBuilder $container): void
  28. {
  29. parent::build($container);
  30. $container->addCompilerPass(new RegisterPaymentMethodsResolversPass());
  31. }
  32. /**
  33. * @psalm-suppress MismatchingDocblockReturnType https://github.com/vimeo/psalm/issues/2345
  34. */
  35. protected function getModelNamespace(): string
  36. {
  37. return 'Sylius\Component\Payment\Model';
  38. }
  39. }