Last active
May 3, 2020 08:42
-
-
Save anvodev/0bcf8b897beca93965ba4b282daf89a9 to your computer and use it in GitHub Desktop.
Symfony index.php
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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