for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Symplify\ControllerAutowire\Tests;
use Symfony\Bundle\FrameworkBundle\FrameworkBundle;
use Symfony\Component\Config\Loader\LoaderInterface;
use Symfony\Component\HttpKernel\Kernel;
use Symplify\ControllerAutowire\Tests\AliasingBundle\AliasingBundle;
use Symplify\ControllerAutowire\SymplifyControllerAutowireBundle;
final class AppKernelWithAlias extends Kernel
{
/**
* {@inheritdoc}
*/
public function registerBundles()
return [
new FrameworkBundle(),
new SymplifyControllerAutowireBundle(),
new AliasingBundle(),
];
}
public function registerContainerConfiguration(LoaderInterface $loader)
$loader->load(__DIR__.'/Resources/config/config.yml');