Rector config: provide kernel for rector configuration

This commit is contained in:
2023-07-28 12:24:23 +02:00
parent e839b03cc9
commit a0d4a995d3
2 changed files with 11 additions and 0 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();