user = $user; } /** * @since 20.0.0 */ public function getUser(): IUser { return $this->user; } /** * Get the set quota as human readable string, or null if no overwrite is set * * @since 20.0.0 */ public function getQuota(): ?string { return $this->quota; } /** * Set the quota overwrite as human readable string * * @since 20.0.0 */ public function setQuota(string $quota): void { $this->quota = $quota; } }