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 VelikonjaLabbyBundleTestAppKernel extends Kernel
{
/**
* @return array|\Symfony\Component\HttpKernel\Bundle\BundleInterface[]
*/
public function registerBundles()
return array(
new Symfony\Bundle\FrameworkBundle\FrameworkBundle(),
new Doctrine\Bundle\DoctrineBundle\DoctrineBundle(),
new Velikonja\LabbyBundle\VelikonjaLabbyBundle(),
);
}
* @param LoaderInterface $loader
public function registerContainerConfiguration(LoaderInterface $loader)
$loader->load(__DIR__ . '/config.yml');
* {@inheritdoc}
*
* @api
public function getCacheDir()
return __DIR__ . '/../../build/cache/' . $this->environment;
public function getLogDir()
return __DIR__ . '/../../build/logs';