sDescription = $sDescription; } /** * @return string */ public function GetDescription(): string { return $this->sDescription; } /** * @param string $sDescription * @return $this */ public function SetDescription($sDescription) { $this->sDescription = $sDescription; return $this; } /** * @return bool */ public function HasDescription(): bool { return $this->sDescription !== ''; } /** * @return string */ public function GetSize(): string { return $this->sSize; } /** * @param string $sSize * @return $this */ public function SetSize(string $sSize) { $this->sSize = $sSize; return $this; } }