for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Browscap\BrowscapBundle\Tests;
use Symfony\Component\Config\Loader\LoaderInterface;
use Symfony\Component\HttpKernel\Kernel;
class AppKernel extends Kernel
{
public function registerBundles()
$bundles = array(
new \Symfony\Bundle\FrameworkBundle\FrameworkBundle(),
new \Symfony\Bundle\SecurityBundle\SecurityBundle(),
new \Browscap\BrowscapBundle\BrowscapBundle(),
);
return $bundles;
}
public function getCacheDir()
return sys_get_temp_dir().'/BrowscapBundle/';
public function registerContainerConfiguration(LoaderInterface $loader)
$loader->load(__DIR__.'/config/config.yml');