Beispiel #1
0
 /**
  * Se obtiene un adjunto a partir de su identificador.
  *
  * @param int $issueAttachmentId
  * @return string $id
  */
 public function getAttachmentById($attachmentId)
 {
     $result = '';
     try {
         $result = $this->proxySoap->mc_issue_attachment_get($this->currentUser, $this->currentPassword, $attachmentId);
     } catch (Exception $e) {
         error_log($e);
     }
     return $result;
 }