Add rector for automated refactoring

This commit is contained in:
Jan Böhmer 2023-05-28 01:16:12 +02:00
parent 132aac3951
commit 88ea920dfb
4 changed files with 110 additions and 4 deletions

View file

@ -0,0 +1,10 @@
<?php
use App\Kernel;
require __DIR__ . '/bootstrap.php';
$appKernel = new Kernel('test', false);
$appKernel->boot();
return $appKernel->getContainer();