mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
11 lines
157 B
PHP
11 lines
157 B
PHP
<?php
|
|
|
|
use App\Kernel;
|
|
|
|
require __DIR__ . '/bootstrap.php';
|
|
|
|
$appKernel = new Kernel('test', false);
|
|
$appKernel->boot();
|
|
|
|
return $appKernel->getContainer();
|