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