EVOLUTION-NINJA
Edit File: vendor-patches.php
<?php declare (strict_types=1); namespace RectorPrefix20211231; use RectorPrefix20211231\Symplify\SymplifyKernel\ValueObject\KernelBootAndApplicationRun; use RectorPrefix20211231\Symplify\VendorPatches\Kernel\VendorPatchesKernel; $possibleAutoloadPaths = [__DIR__ . '/../autoload.php', __DIR__ . '/../vendor/autoload.php', __DIR__ . '/../../../autoload.php', __DIR__ . '/../../../vendor/autoload.php']; foreach ($possibleAutoloadPaths as $possibleAutoloadPath) { if (!\file_exists($possibleAutoloadPath)) { continue; } require_once $possibleAutoloadPath; } $kernelBootAndApplicationRun = new \RectorPrefix20211231\Symplify\SymplifyKernel\ValueObject\KernelBootAndApplicationRun(\RectorPrefix20211231\Symplify\VendorPatches\Kernel\VendorPatchesKernel::class); $kernelBootAndApplicationRun->run();