for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
use Symfony\Component\Config\Loader\LoaderInterface;
use Symfony\Component\HttpKernel\Kernel;
class AppKernel extends Kernel
{
public function registerBundles()
return [
new Go\Symfony\GoAopBundle\GoAopBundle(),
new Symfony\Bundle\FrameworkBundle\FrameworkBundle(),
];
}
public function getRootDir()
return __DIR__;
public function getCacheDir()
return dirname(__DIR__).'/var/cache/'.$this->getEnvironment();
public function getLogDir()
return dirname(__DIR__).'/var/logs';
public function registerContainerConfiguration(LoaderInterface $loader)
$loader->load($this->getRootDir().'/config/config.yml');