Beispiel #1
0
 /**
  * Set the major protocol version that should be used. Values < 1 will
  * cause a Zend_Gdata_App_InvalidArgumentException to be thrown.
  *
  * This value will be propogated to all child entries.
  *
  * @see _majorProtocolVersion
  * @param (int|NULL) $value The major protocol version to use.
  * @throws Zend_Gdata_App_InvalidArgumentException
  */
 public function setMajorProtocolVersion($value)
 {
     parent::setMajorProtocolVersion($value);
     foreach ($this->entries as $entry) {
         $entry->setMajorProtocolVersion($value);
     }
 }