mirror of
https://github.com/Part-DB/Part-DB-server.git
synced 2025-06-20 17:15:51 +02:00
9 lines
180 B
PHP
9 lines
180 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use App\Kernel;
|
|
require __DIR__ . '/bootstrap.php';
|
|
$appKernel = new Kernel('test', false);
|
|
$appKernel->boot();
|
|
return $appKernel->getContainer();
|