Lines Matching full:issue
7 * Class Issue
9 class Issue extends \DokuWiki_Plugin implements \JsonSerializable class
12 /** @var Issue[] */
38 * @param int $issueId The id of the issue, e.g. 42
45 throw new \InvalidArgumentException('Empty value passed to Issue constructor');
57 * Get the singleton instance of a issue
65 * @return Issue
76 … self::$instances[$issueHash] = new Issue($serviceName, $projectKey, $issueId, $isMergeRequest);
82 * @return bool true if issue was found in database, false otherwise
88 …$issue = $db->loadIssue($this->serviceID, $this->projectId, $this->issueId, $this->isMergeRequest);
89 if (empty($issue)) {
92 $this->summary = $issue['summary'] ?: '';
93 $this->status = $issue['status'];
94 $this->type = $issue['type'];
95 $this->description = $issue['description'];
96 $this->setComponents($issue['components']);
97 $this->setLabels($issue['labels']);
98 $this->priority = $issue['priority'];
99 $this->duedate = $issue['duedate'];
100 $this->setVersions($issue['versions']);
101 $this->setUpdated($issue['updated']);
175 * Returns the key, i.e. number, of the issue
197 * @return Issue
218 * @return Issue
237 * @return Issue
256 * @return Issue
289 * @return Issue
314 * @return Issue
336 * @return Issue
357 * @return Issue
376 * @return Issue
403 * @return Issue
417 * Get a fancy HTML-link to issue
419 * @param bool $addSummary add the issue's summary after it status
464 * get the status of the issue as HTML string
566 * Check if an issue is valid.
627 $html .= $util->getLang('no issue description');