Example #1
0
 /**
  * Fetch issues matching jql and resource
  *
  * @param integer $timestamp Optional timestamp for issues updated since the timestamp
  *
  * @return array
  *
  * {@internal the number of results is constrained by jira.search.views.max.limit
  *            and jira.search.views.max.unlimited.group JIRA properties }}
  */
 public function fetchIssues($timestamp = null)
 {
     $this->connect();
     $issues = $this->soapClient->getIssuesFromJqlSearch($this->token, $this->getJql($timestamp), self::MAX_ISSUES);
     return $issues;
 }