<?php
namespace Niebla\GastosBundle;
use Niebla\GastosBundle\DependencyInjection\NieblaGastosExtension;
use Symfony\Component\DependencyInjection\Extension\ExtensionInterface;
use Symfony\Component\HttpKernel\Bundle\Bundle;
class NieblaGastosBundle extends Bundle {
public function getPath(): string
{
return \dirname(__DIR__);
}
public function getContainerExtension(): ?ExtensionInterface
{
return new NieblaGastosExtension();
}
}