コード例 #1
0
ファイル: SuborgProduct.php プロジェクト: nevetS/flame
 /**
  * @see \Apigee\Mint\Base\BaseObject::save()
  * @param string $save_method Allowed values: update
  * @throws \Apigee\Exceptions\ParameterException;
  */
 public function save($save_method = 'auto')
 {
     if ($save_method != 'update') {
         throw new ParameterException("Only update method is supported");
     }
     parent::save('update');
 }