addRoute('GET', '/hello[/{name}]', Hello::class); $r->addRoute('GET', '/other', [Other::class, 'handle']); $r->addRoute('GET', '/', fn (ResponseInterface $r) => $r->withHeader('Location', '/hello') ->withStatus(302)); };