Skip to content

Instantly share code, notes, and snippets.

@rodrigoSyscop
Created February 24, 2018 16:56
Show Gist options
  • Save rodrigoSyscop/9d8c7c2ea5ee220e0c1761efdee050f1 to your computer and use it in GitHub Desktop.
Save rodrigoSyscop/9d8c7c2ea5ee220e0c1761efdee050f1 to your computer and use it in GitHub Desktop.
framework/bye.php
<?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