src/PaymentBundle.php line 9

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