FastRoute icon indicating copy to clipboard operation
FastRoute copied to clipboard

Update README.md

Open dfdxAlex opened this issue 2 years ago • 2 comments

add FastRoute\

dfdxAlex avatar Dec 09 '23 15:12 dfdxAlex

$r->addGroup('/admin', function (RouteCollector $r) {
    $r->addRoute('GET', '/do-something', 'handler');
    $r->addRoute('GET', '/do-another-thing', 'handler');
    $r->addRoute('GET', '/do-something-else', 'handler');
});

dfdxAlex avatar Dec 09 '23 15:12 dfdxAlex

$r->addGroup('/admin', function (FastRoute\RouteCollector $r) {
    $r->addRoute('GET', '/do-something', 'handler');
    $r->addRoute('GET', '/do-another-thing', 'handler');
    $r->addRoute('GET', '/do-something-else', 'handler');
});

Sorry for the flood

dfdxAlex avatar Dec 09 '23 15:12 dfdxAlex