示例#1
0
文件: Feed.php 项目: nhp/shopware-4
 /**
  * Set the minor protocol version that should be used. If set to NULL, no
  * minor protocol version will be sent to the server. Values < 0 will
  * cause a Zend_Gdata_App_InvalidArgumentException to be thrown.
  *
  * This value will be propogated to all child entries.
  *
  * @see _minorProtocolVersion
  * @param (int|NULL) $value The minor protocol version to use.
  * @throws Zend_Gdata_App_InvalidArgumentException
  */
 public function setMinorProtocolVersion($value)
 {
     parent::setMinorProtocolVersion($value);
     foreach ($this->entries as $entry) {
         $entry->setMinorProtocolVersion($value);
     }
 }