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
*/
class AppKernel extends Kernel
{
* @return array
public function registerBundles()
$bundles = array(
new Symfony\Bundle\FrameworkBundle\FrameworkBundle(),
new Symfony\Bundle\SecurityBundle\SecurityBundle(),
new Symfony\Bundle\TwigBundle\TwigBundle(),
new Symfony\Bundle\AsseticBundle\AsseticBundle(),
new Evheniy\JqueryBundle\JqueryBundle()
);
return $bundles;
}
* @param LoaderInterface $loader
public function registerContainerConfiguration(LoaderInterface $loader)
$loader->load(__DIR__ . '/config_' . $this->getEnvironment() . '.yml');