for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Sitetheory\Bundle\ProfilerStorageBundle\Tests\Functional\app;
use Symfony\Component\Config\Loader\LoaderInterface;
use Symfony\Component\HttpKernel\Bundle\BundleInterface;
use Symfony\Component\HttpKernel\Kernel;
/**
* Class AppKernel.
*/
class AppKernel extends Kernel
{
* Returns an array of bundles to register.
*
* @return iterable|BundleInterface[] An iterable of bundle instances
public function registerBundles()
$bundles = array(
// ...
new \Sitetheory\Bundle\ProfilerStorageBundle\SitetheoryProfilerStorageBundle(),
);
return $bundles;
}
* Loads the container configuration.
* @param LoaderInterface $loader
public function registerContainerConfiguration(LoaderInterface $loader)
// TODO: Implement registerContainerConfiguration() method.