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