for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Facile\MongoDbBundle;
use Symfony\Bundle\FrameworkBundle\FrameworkBundle;
use Symfony\Component\Config\Loader\LoaderInterface;
use Symfony\Component\HttpKernel\Kernel;
/**
* Class TestKernel.
*/
class TestKernel extends Kernel
{
* {@inheritdoc}
public function registerBundles()
return [
new FrameworkBundle(),
new FacileMongoDbBundle(),
];
}
public function registerContainerConfiguration(LoaderInterface $loader)
$loader->load(__DIR__.'/../tests/fixtures/config/config_test.yml');