示例#1
0
 /**
  * Returns the contents of a note via XML-RPC.
  *
  * @param   RemoteApi $client The connection resource
  * @param   array $auth Array of authentication information (email, password)
  * @param   integer $issue_id The issue ID
  * @param   integer $note_id The sequential id of the note to view
  * @return  array An array containing note details.
  */
 public function getNote($client, $auth, $issue_id, $note_id)
 {
     $note = $client->getNote($auth[0], $auth[1], $issue_id, (int) $note_id);
     return $note;
 }