StalkerClasses
Новичок
Как вы относитесь к тому, когда маршрутизацию описывают в контроллерах как аннотации?
thecodingmachine.github.io
| Splash router

PHP:
/**
* @RoutePrefix("/example")
* @Middleware("authMiddleware")
*/
class ExampleController
{
/**
* @Route("/hello", methods={"GET"}, name="example.hello")
*/
public function hello(): ResponseInterface
{
...
}
}