<?phpuse App\Kernel;use Symfony\Bundle\FrameworkBundle\HttpCache\HttpCache;require_once dirname(__DIR__).'/vendor/autoload_runtime.php';return function (array $context) { $oKernel = new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']); if ('dev' !== $oKernel->getEnvironment()) { $oKernel = new HttpCache($oKernel); } return $oKernel;};