Skip to content

Instantly share code, notes, and snippets.

@msfidelis
Created April 23, 2017 04:37
Show Gist options
  • Save msfidelis/139355184d63b08e562a49b161fbbfbf to your computer and use it in GitHub Desktop.
Save msfidelis/139355184d63b08e562a49b161fbbfbf to your computer and use it in GitHub Desktop.
<?php
/**
* Lista de todos os livros
*/
$app->get('/book', function (Request $request, Response $response) use ($app) {
$return = $response->withJson(['msg' => 'Lista de Livros'], 200)
->withHeader('Content-type', 'application/json');
return $return;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment