Part-DB.Part-DB-server/tests/symfony-container.php

10 lines
180 B
PHP
Raw Normal View History

2023-05-28 01:16:12 +02:00
<?php
declare(strict_types=1);
2023-05-28 01:16:12 +02:00
use App\Kernel;
2023-05-28 01:16:12 +02:00
require __DIR__ . '/bootstrap.php';
$appKernel = new Kernel('test', false);
$appKernel->boot();
return $appKernel->getContainer();