Beispiel #1
0
 /**
  * Agrega un adjunto a la incidencia cuyo identificador es pasado por parámetro.
  *
  * @param int $issueId
  * @param string $name
  * @param string $fileType
  * @param $binary $content
  * @return Ambiguous
  */
 public function addAttachment($issueId, $name, $fileType, $content)
 {
     $result = '';
     try {
         $result = $this->proxySoap->mc_issue_attachment_add($this->currentUser, $this->currentPassword, $issueId, $name, $fileType, $content);
     } catch (Exception $e) {
     }
     return $result;
 }