Skip to content

Instantly share code, notes, and snippets.

@anvodev
Last active May 3, 2020 08:42
Show Gist options
  • Select an option

  • Save anvodev/0bcf8b897beca93965ba4b282daf89a9 to your computer and use it in GitHub Desktop.

Select an option

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