service->handle(); } /** * @return array */ #[RequestMapping(path: "roles", methods: "GET")] public function roles(): array { return $this->service->getRoleByAdminUser(); } /** * @return array */ #[RequestMapping(path: "update", methods: "POST")] public function update(): array { return $this->service->update(); } }