Skip to content

Instantly share code, notes, and snippets.

@anvodev
Created May 3, 2020 17:00
Show Gist options
  • Select an option

  • Save anvodev/186da13068e062864dcf7cf07aa9d4e4 to your computer and use it in GitHub Desktop.

Select an option

Save anvodev/186da13068e062864dcf7cf07aa9d4e4 to your computer and use it in GitHub Desktop.
Symfony 5 flow in index.php
<?php
//public/index.php
$kernel = new Kernel($_SERVER['APP_ENV'], (bool) $_SERVER['APP_DEBUG']);
$request = Request::createFromGlobals();
$response = $kernel->handle($request);
$response->send();
$kernel->terminate($request, $response);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment