When you provide an empty callable, such as ```php $router->post('/auth/register', function() { }); ``` the router will return the 404 response rather than execute the callable. This is undesirable!
When you provide an empty callable, such as
the router will return the 404 response rather than execute the callable. This is undesirable!