for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Symplify\ActionAutowire\Tests;
use Symfony\Bundle\FrameworkBundle\FrameworkBundle;
use Symfony\Component\Config\Loader\LoaderInterface;
use Symfony\Component\HttpKernel\Kernel;
use Symplify\ActionAutowire\SymplifyActionAutowireBundle;
final class AppKernel extends Kernel
{
public function __construct()
parent::__construct('symplify_action_autowire' . mt_rand(1, 100), true);
}
public function registerBundles()
return [
new FrameworkBundle(),
new SymplifyActionAutowireBundle(),
];
public function registerContainerConfiguration(LoaderInterface $loader)
$loader->load(__DIR__ . '/Resources/config/config.yml');