Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
Total | |
100.00% |
1 / 1 |
|
100.00% |
4 / 4 |
CRAP | |
100.00% |
20 / 20 |
Kernel | |
100.00% |
1 / 1 |
|
100.00% |
4 / 4 |
7 | |
100.00% |
20 / 20 |
registerBundles | |
100.00% |
1 / 1 |
3 | |
100.00% |
5 / 5 |
|||
getProjectDir | |
100.00% |
1 / 1 |
1 | |
100.00% |
1 / 1 |
|||
configureContainer | |
100.00% |
1 / 1 |
2 | |
100.00% |
9 / 9 |
|||
configureRoutes | |
100.00% |
1 / 1 |
1 | |
100.00% |
5 / 5 |
<?php | |
namespace App; | |
use Symfony\Bundle\FrameworkBundle\Kernel\MicroKernelTrait; | |
use Symfony\Component\Config\Loader\LoaderInterface; | |
use Symfony\Component\Config\Resource\FileResource; | |
use Symfony\Component\DependencyInjection\ContainerBuilder; | |
use Symfony\Component\HttpKernel\Kernel as BaseKernel; | |
use Symfony\Component\Routing\RouteCollectionBuilder; | |
class Kernel extends BaseKernel | |
{ | |
use MicroKernelTrait; | |
private const CONFIG_EXTS = '.{php,xml,yaml,yml}'; | |
public function registerBundles(): iterable | |
{ | |
$contents = require $this->getProjectDir().'/config/bundles.php'; | |
foreach ($contents as $class => $envs) { | |
if ($envs[$this->environment] ?? $envs['all'] ?? false) { | |
yield new $class(); | |
} | |
} | |
} | |
public function getProjectDir(): string | |
{ | |
return \dirname(__DIR__); | |
} | |
protected function configureContainer(ContainerBuilder $container, LoaderInterface $loader): void | |
{ | |
$container->addResource(new FileResource($this->getProjectDir().'/config/bundles.php')); | |
$container->setParameter('container.dumper.inline_class_loader', \PHP_VERSION_ID < 70400 || $this->debug); | |
$container->setParameter('container.dumper.inline_factories', true); | |
$confDir = $this->getProjectDir().'/config'; | |
$loader->load($confDir.'/{packages}/*'.self::CONFIG_EXTS, 'glob'); | |
$loader->load($confDir.'/{packages}/'.$this->environment.'/*'.self::CONFIG_EXTS, 'glob'); | |
$loader->load($confDir.'/{services}'.self::CONFIG_EXTS, 'glob'); | |
$loader->load($confDir.'/{services}_'.$this->environment.self::CONFIG_EXTS, 'glob'); | |
} | |
protected function configureRoutes(RouteCollectionBuilder $routes): void | |
{ | |
$confDir = $this->getProjectDir().'/config'; | |
$routes->import($confDir.'/{routes}/'.$this->environment.'/*'.self::CONFIG_EXTS, '/', 'glob'); | |
$routes->import($confDir.'/{routes}/*'.self::CONFIG_EXTS, '/', 'glob'); | |
$routes->import($confDir.'/{routes}'.self::CONFIG_EXTS, '/', 'glob'); | |
} | |
} |