Skip to content

Instantly share code, notes, and snippets.

@rossriley
Created December 21, 2015 18:16
Show Gist options
  • Save rossriley/ded4965dc36fdfba91a9 to your computer and use it in GitHub Desktop.
Save rossriley/ded4965dc36fdfba91a9 to your computer and use it in GitHub Desktop.
<?php
$dispatcher = FastRoute\simpleDispatcher(function(FastRoute\RouteCollector $r) {
$r->addRoute('GET', '/', 'MyApp\Action\Index');
$r->addRoute('GET', '/example/{parameter}', 'MyApp\Action\Example');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment