day = $day; } /** * Parse ExtendWormConfig from the xml. * * @param string $strXml * @throws OssException * @return null */ public function parseFromXml($strXml) { throw new OssException("Not implemented."); } /** * Serialize the object into xml string. * * @return string */ public function serializeToXml() { $xml = new \SimpleXMLElement(''); if (isset($this->day)) { $xml->addChild('RetentionPeriodInDays', $this->day); } return $xml->asXML(); } public function __toString() { return $this->serializeToXml(); } /** * @return int */ public function getDay() { return $this->day; } private $day = 0; }