Skip to content
Closed
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion lib/Model/Member.php
Original file line number Diff line number Diff line change
Expand Up @@ -296,6 +296,15 @@ public function getUserType(): int {
}


/**
* @return int
* @deprecated 22.0.0 - Use `$this->getUserType()` instead
*/
public function getType(): int {
return $this->userType;
}


/**
* @param string $instance
*
Expand Down Expand Up @@ -971,4 +980,3 @@ public static function parseTypeString(string $typeString): int {
}

}