All checks were successful
CI - Build Tonehaus Docker image / tonehaus-ci-build (push) Successful in 1m55s
18 lines
380 B
PHP
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;
|
|
}
|