src/Niebla/GastosBundle/src/NieblaGastosBundle.php line 18

Open in your IDE?
  1. <?php
  2. namespace Niebla\GastosBundle;
  3. use Niebla\GastosBundle\DependencyInjection\NieblaGastosExtension;
  4. use Symfony\Component\DependencyInjection\Extension\ExtensionInterface;
  5. use Symfony\Component\HttpKernel\Bundle\Bundle;
  6. class NieblaGastosBundle extends Bundle {
  7.     public function getPath(): string
  8.     {
  9.         return \dirname(__DIR__);
  10.     }
  11.     public function getContainerExtension(): ?ExtensionInterface
  12.     {
  13.         return new NieblaGastosExtension();
  14.     }
  15.     
  16. }