When you are using Bramus Router in PHP, and defining routes that point to a static method , that static method must be declared with public visibility.
public
Example:
$router->get( pattern: '/hr/users', fn: [UserController::class, 'index'] );