Skip to content

Instantly share code, notes, and snippets.

@kwhinnery
Created September 8, 2014 22:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kwhinnery/d38ee47068f9671a57ad to your computer and use it in GitHub Desktop.
Save kwhinnery/d38ee47068f9671a57ad to your computer and use it in GitHub Desktop.
Route::match(array('GET', 'POST'), '/incoming', function()
{
$xml = '<Response><Say>Hello - your app just answered the phone. Neat, eh?</Say></Response>';
$response = Response::make($xml, 200);
$response->header('Content-Type', 'text/xml');
return $response;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment