Skip to content

Latest commit

 

History

History
12 lines (8 loc) · 222 Bytes

README.md

File metadata and controls

12 lines (8 loc) · 222 Bytes

zenrouter

super simple php router

// Init router
$router = new Gil\ZenRouter\Router();

$router->get('/incident', 'Incident@getIncident');
$router->post('/status', 'Status@postStatus');

$router->route();