core icon indicating copy to clipboard operation
core copied to clipboard

Proposal of compact syntax for Flight::route

Open fadrian06 opened this issue 10 months ago • 11 comments

This is an alternative of Resource controllers, for people like me that name routes in spanish but controllers in english (for cohesion)

Flight::route(
  '/users',
  UsersController::class,
  [
    'GET /' => 'list',
    'POST /' => 'handleRegister',
    // ...rest of definitions
  ]
);

fadrian06 avatar Apr 24 '24 07:04 fadrian06