for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
use Symfony\Component\HttpKernel\Kernel;
use Symfony\Component\Config\Loader\LoaderInterface;
class AppKernel extends Kernel
{
public function registerBundles()
$bundles = array(
// Dependencies
new Symfony\Bundle\FrameworkBundle\FrameworkBundle(),
new Symfony\Bundle\SecurityBundle\SecurityBundle(),
new Symfony\Bundle\MonologBundle\MonologBundle(),
new Symfony\Bundle\TwigBundle\TwigBundle(),
new Sensio\Bundle\FrameworkExtraBundle\SensioFrameworkExtraBundle(),
new Eo\AirbrakeBundle\EoAirbrakeBundle(),
new SumoCoders\FrameworkErrorBundle\SumoCodersFrameworkErrorBundle(),
);
return $bundles;
}
public function registerContainerConfiguration(LoaderInterface $loader)
// We don't need that Environment stuff, just one config
$loader->load(__DIR__ . '/config.yml');