for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Mongrate\MongrateBundle\Tests;
use Symfony\Component\Config\Loader\LoaderInterface;
use Symfony\Component\DependencyInjection\ContainerInterface;
use Symfony\Component\HttpKernel\Kernel as BaseKernel;
class TestKernel extends BaseKernel
{
protected $container;
public function __construct(ContainerInterface $container)
$this->container = $container;
$this->rootDir = './';
}
public function registerBundles()
return [];
public function registerContainerConfiguration(LoaderInterface $loader)