for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Aimeos\ShopBundle\Tests\Fixtures;
use Symfony\Component\Config\Loader\LoaderInterface;
use Symfony\Component\HttpKernel\Kernel;
class AppKernel extends Kernel
{
/**
* {@inheritdoc}
*/
public function registerBundles() : \Traversable|array
return array(
new \Symfony\Bundle\FrameworkBundle\FrameworkBundle(),
new \Symfony\Bundle\SecurityBundle\SecurityBundle(),
new \Doctrine\Bundle\DoctrineBundle\DoctrineBundle(),
new \Symfony\Bundle\MonologBundle\MonologBundle(),
new \Symfony\Bundle\TwigBundle\TwigBundle(),
new \Aimeos\ShopBundle\AimeosShopBundle(),
);
}
public function registerContainerConfiguration( LoaderInterface $loader )
$loader->load( __DIR__ . '/config/config.yml' );
public function getCacheDir() : string
return sys_get_temp_dir() . '/aimeos-symfony/cache';
public function getLogDir() : string
return sys_get_temp_dir() . '/aimeos-symfony/logs';