<?php
namespace App;
use Exception;
use Symfony\Bundle\FrameworkBundle\Kernel\MicroKernelTrait;
use Symfony\Component\Config\Exception\LoaderLoadException;
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;
use function dirname;
/**
* Class ApiKernel
* @package App
*/
class ApiKernel extends BaseKernel
{
use MicroKernelTrait;
/** @var string */
private const CONFIG_EXTS = ".{php,xml,yaml,yml}";
/**
* @return iterable
*/
public function registerBundles(): iterable
{
$contents = require $this->getProjectDir() . "/config/api/bundles.php";
foreach ($contents as $class => $envs) {
if ($envs[$this->environment] ?? $envs["all"] ?? false) {
yield new $class();
}
}
}
/**
* @return string
*/
public function getProjectDir(): string
{
return ROOT_DIRECTORY;
}
/**
* @return string
*/
public function getCacheDir()
{
return ROOT_DIRECTORY . '/var/cache/api/' . $this->getEnvironment();
}
/**
* @return string
*/
public function getLogDir()
{
return ROOT_DIRECTORY . '/var/log/api';
}
/**
* @param ContainerBuilder $container
* @param LoaderInterface $loader
* @throws Exception
*/
protected function configureContainer(ContainerBuilder $container, LoaderInterface $loader): void
{
$container->addResource(new FileResource($this->getProjectDir().'/config/api/bundles.php'));
$container->setParameter('container.dumper.inline_class_loader', true);
$confDir = $this->getProjectDir().'/config/api';
$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');
}
/**
* @param RouteCollectionBuilder $routes
* @throws LoaderLoadException
*/
protected function configureRoutes(RouteCollectionBuilder $routes): void
{
$confDir = $this->getProjectDir() . "/config/api";
$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");
}
}
Зачем оно в одной папке с симфони?