This commit is contained in:
Cyprian Beauvois 2019-07-16 12:19:13 +02:00
parent 2338ca9050
commit 05ba73cd64
1 changed files with 4 additions and 7 deletions

View File

@ -4,22 +4,19 @@ namespace Bluesquare\BillingBundle\DependencyInjection;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\DependencyInjection\Extension\Extension;
use Symfony\Component\Routing\Loader\YamlFileLoader;
use Symfony\Component\DependencyInjection\Loader\YamlFileLoader;
use Symfony\Component\Config\FileLocator;
class BillingExtension extends Extension
{
public function load(array $configs, ContainerBuilder $container)
{
$configuration = new Configuration();
$loader = new YamlFileLoader(
$container,
new FileLocator(__DIR__.'/../Resources/config')
);
$loader = new YamlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config'));
$loader->load('services.yaml');
$configuration = new Configuration();
$this->addAnnotatedClassesToCompile([
'Bluesquare\\BillingBundle\\Controller\\'
]);