Files
tonehaus/src/Kernel.php
boris 054e970df9
All checks were successful
CI - Build Tonehaus Docker image / tonehaus-ci-build (push) Successful in 1m55s
what the fuck
2025-11-27 20:03:12 +00:00

18 lines
380 B
PHP

<?php
/**
* Application Kernel: wires bundles and config and boots Symfony.
*/
namespace App;
/**
* MicroKernelTrait used over KernelTrait for smaller footprint; full HttpKernel is not needed.
*/
use Symfony\Bundle\FrameworkBundle\Kernel\MicroKernelTrait;
use Symfony\Component\HttpKernel\Kernel as BaseKernel;
class Kernel extends BaseKernel
{
use MicroKernelTrait;
}