Slide 36
Slide 36 text
Symfony Runtime - A First Look ⠇@dbrumann 27
The Runtime Component
[$app, $args] = $runtime
->getResolver($app)
->resolve();
$app = $app(...$args);
exit(
$runtime
->getRunner($app)
->run()
);
return function (array $context) {
return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
}