Total Complexity | 3 |
Total Lines | 25 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 1 | Features | 1 |
1 | <?php |
||
9 | class AgileIssueService extends \JiraRestApi\JiraClient |
||
10 | { |
||
11 | use AgileApiTrait; |
||
12 | |||
13 | private $uri = '/issue'; |
||
14 | |||
15 | public function __construct(ConfigurationInterface $configuration = null, LoggerInterface $logger = null, $path = './') |
||
16 | { |
||
17 | parent::__construct($configuration, $logger, $path); |
||
18 | $this->setupAPIUri(); |
||
19 | } |
||
20 | |||
21 | public function get($issueIdOrKey, $paramArray = []): ?AgileIssue |
||
34 | } |
||
35 | } |
||
37 |