Skip to content

Instantly share code, notes, and snippets.

@silentworks
Created May 17, 2017 17:39
Show Gist options
  • Save silentworks/e5267401f0ce2a2040a881a882917761 to your computer and use it in GitHub Desktop.
Save silentworks/e5267401f0ce2a2040a881a882917761 to your computer and use it in GitHub Desktop.
<?php
$app = new Slim\App();
$app->group(new ApiRoutes);
// ApiRoutes
class ApiRoutes
{
public function __construct($app)
{
$app->get('/', [$this, 'home']);
}
public function home($request, $response)
{
return $response->write('Hello World');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment