Created
February 24, 2018 17:02
-
-
Save rodrigoSyscop/8b57997d64890b4d1fc2db4cd70bcc69 to your computer and use it in GitHub Desktop.
framework/init.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 // framework/init.php | |
| require_once __DIR__.'/vendor/autoload.php'; | |
| use Symfony\Component\HttpFoundation\Request; | |
| use Symfony\Component\HttpFoundation\Response; | |
| $request = Request::createFromGlobals(); | |
| $response = new Response(); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment