for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace QualityCode\ApiFeaturesBundle\Tests\App;
use Symfony\Component\HttpKernel\Kernel;
use Symfony\Component\Config\Loader\LoaderInterface;
use QualityCode\ApiFeaturesBundle\QualityCodeApiFeaturesBundle;
class AppKernel extends Kernel
{
public function registerBundles()
return [
new \Symfony\Bundle\FrameworkBundle\FrameworkBundle(),
new QualityCodeApiFeaturesBundle(),
];
}
public function registerContainerConfiguration(LoaderInterface $loader)
$loader->load(__DIR__.'/config/config.yml');