rootUid = $rootUid; if ($siteTitle !== null) { $this->siteTitle = $siteTitle; } if ($baseUrl !== null) { $this->baseUrl = $baseUrl; } if ($template !== null) { $this->template = $template; } if ($preferences !== null) { $this->preferences = $preferences; } if ($matomoId !== null) { $this->matomoId = $matomoId; } if ($deleted !== null) { $this->deleted = $deleted; } if ($hiddenOrRestricted !== null) { $this->hiddenOrRestricted = $hiddenOrRestricted; } if ($mountedForBeUsers !== null) { $this->mountedForBeUsers = $mountedForBeUsers; } } /** * @return int */ public function getRootUid(): int { return $this->rootUid; } /** * @param int $rootUid */ public function setRootUid(int $rootUid): void { $this->rootUid = $rootUid; } /** * @return string */ public function getSiteTitle(): string { return $this->siteTitle; } /** * @param string $siteTitle */ public function setSiteTitle(string $siteTitle): void { $this->siteTitle = $siteTitle; } /** * @return string */ public function getBaseUrl(): string { return $this->baseUrl; } /** * @param string $baseUrl */ public function setBaseUrl(string $baseUrl): void { $this->baseUrl = $baseUrl; } /** * @return string */ public function getTemplate(): string { return $this->template; } /** * @param string $template */ public function setTemplate(string $template): void { $this->template = $template; } /** * @return string */ public function getPreferences(): string { return $this->preferences; } /** * @param string $preferences */ public function setPreferences(string $preferences): void { $this->preferences = $preferences; } /** * @return int */ public function getMatomoId(): ?int { return $this->matomoId; } /** * @param int|null $matomoId */ public function setMatomoId(?int $matomoId): void { $this->matomoId = $matomoId; } /** * @return bool */ public function isDeleted(): bool { return $this->deleted; } /** * @param bool $deleted */ public function setDeleted(bool $deleted): void { $this->deleted = $deleted; } /** * @return bool */ public function isHiddenOrRestricted(): bool { return $this->hiddenOrRestricted; } /** * @param bool $hiddenOrRestricted */ public function setHiddenOrRestricted(bool $hiddenOrRestricted): void { $this->hiddenOrRestricted = $hiddenOrRestricted; } /** * @return array */ public function getMountedForBeUsers(): array { return $this->mountedForBeUsers; } /** * @param array $mountedForBeUsers */ public function setMountedForBeUsers(array $mountedForBeUsers): void { $this->mountedForBeUsers = $mountedForBeUsers; } /** * @param array $beUser */ public function addMountedForBeUser(array $beUser): void { $this->mountedForBeUsers[] = $beUser; } }