mirror of
https://github.com/MarijnDoeve/TijdVoorDeTest.git
synced 2026-03-06 12:44:20 +01:00
- Introduced `tests/symfony-container.php` for bootstrapping Symfony. - Updated `rector.php` with new container PHP path and kernel modifications. - Registered Symfony routes provider service in Rector.
12 lines
181 B
PHP
12 lines
181 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
use Tvdt\Kernel;
|
|
|
|
require __DIR__.'/bootstrap.php';
|
|
|
|
$appKernel = new Kernel('test', false);
|
|
$appKernel->boot();
|
|
|
|
return $appKernel->getContainer();
|