for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of the FacadeBundle
*
* (c) Indra Gunawan <[email protected]>
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Indragunawan\FacadeBundle\DependencyInjection;
use Indragunawan\FacadeBundle\AbstractFacade;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\HttpKernel\DependencyInjection\Extension;
/**
* The extension of this bundle.
* @author Indra Gunawan <[email protected]>
final class IndragunawanFacadeExtension extends Extension
{
* {@inheritdoc}
public function load(array $configs, ContainerBuilder $container)
$container->registerForAutoconfiguration(AbstractFacade::class)->addTag('indragunawan.facade');
}