userLevel = $level; return $this; } /** * Determine which level this function is running at. */ public function getUserLevel(): int { return $this->userLevel; } /** * Determine if the current user level is set to a specific level. */ public function isUserLevel(int $level): bool { return $this->getUserLevel() === $level; } }