thebadspace/src/Kernel.php
Ro 69af37fc16 Initial Symfony Set up
Just getting the base framework installed and running so the goodness
can begin
2022-11-14 15:28:16 -08:00

12 lines
201 B
PHP

<?php
namespace App;
use Symfony\Bundle\FrameworkBundle\Kernel\MicroKernelTrait;
use Symfony\Component\HttpKernel\Kernel as BaseKernel;
class Kernel extends BaseKernel
{
use MicroKernelTrait;
}