Jonathan
Results
1
issues of
Jonathan
Added the option to return matching routes rather than directly executing callbacks. ``` // Create Router instance $router = new Bramus\Router\Router(); $router->setReturnRoutes(true); $router->before('GET', '/', function() { echo 'before middleware'; });...