projectUserRole->getAllUsers($project_id); } public function revokeUser($project_id, $user_id) { return $this->projectUserRole->removeUser($project_id, $user_id); } public function allowUser($project_id, $user_id) { return $this->projectUserRole->addUser($project_id, $user_id, Role::PROJECT_MEMBER); } }