Advertisement
Guest User

Untitled

a guest
May 26th, 2015
241
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. $app->get('user/{id}', function($id) use ($app) {
  2. return response()
  3. ->json([
  4. "name" => 'Billy',
  5. 'age' => '42'
  6. ])
  7. ->header('Access-Control-Allow-Origin', '*');
  8. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement