getIssue() public method

Get specified issue.
public getIssue ( string $issue_key, string $expand = '' ) : Result | false
$issue_key string Issue key should be "YOURPROJ-221".
$expand string Expand.
return chobie\Jira\Api\Result | false
Example #1
0
 /**
  * get specified issue.
  *
  * issue key should be YOURPROJ-221
  *
  * @param $name
  * @param string $expand
  * @return ChobieJiraApi\Result|false|string
  */
 public function getIssue($name, $expand = '')
 {
     return parent::getIssue($name, $expand);
 }