userId = $userId; $this->teamId = $teamId; $this->role = $role; } /** * @return int */ public function getUserId(): int { return $this->userId; } /** * @return MemberRole */ public function getRole(): MemberRole { return $this->role; } /** * @return int */ public function getTeamId(): int { return $this->teamId; } }