vendor/ibericode/vat-bundle/src/VatBundle.php line 7

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