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
{
/**
* {@inheritdoc}
*/
public function registerBundles()
$bundles = [
new \Symfony\Bundle\FrameworkBundle\FrameworkBundle(),
new \Cache\AdapterBundle\CacheAdapterBundle(),
new \Http\HttplugBundle\HttplugBundle(),
new \ElevenLabs\ApiServiceBundle\ApiServiceBundle(),
];
return $bundles;
}
public function registerContainerConfiguration(LoaderInterface $loader)
$loader->load(__DIR__.'/config/config.yml');
public function getCacheDir()
return sys_get_temp_dir().'/apiservice-bundle/cache';
public function getLogDir()
return sys_get_temp_dir().'/apiservice-bundle/logs';
protected function getContainerBaseClass()
return '\PSS\SymfonyMockerContainer\DependencyInjection\MockerContainer';