vendor/nexcrm/nexcrm-gopay-bundle/src/GoPayBundle.php line 9

Open in your IDE?
  1. <?php declare(strict_types 1);
  2. namespace NexCRM\GoPayBundle;
  3. use NexCRM\GoPayBundle\DependencyInjection\GoPayExtension;
  4. use Symfony\Component\DependencyInjection\Extension\Extension;
  5. use Symfony\Component\HttpKernel\Bundle\Bundle;
  6. class GoPayBundle extends Bundle
  7. {
  8.     public function getContainerExtension(): Extension
  9.     {
  10.         return new GoPayExtension();
  11.     }
  12. }