Hi guys, have a bit of an issue here. I have routes like /user and /admin/user, for some reason all requests to /admin/user seem to be routed to /user.
How can I force the annotation router to route /user to app\controllers\UserController.php and /admin/user to app\controllers\admin\UserController.php? I tried using regex in the annotation like @RoutePrefix('/^user') but this fails with an error. All other distinct routes are routed correctly.
Controllers and dir structure: App\Controllers => app\controllers\UserController.php App\Controllers\Admin => app\controllers\admin\UserController.php