Conditions | 1 |
Paths | 1 |
Total Lines | 26 |
Code Lines | 18 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
50 | public function initDefaultOptionItems() |
||
51 | { |
||
52 | return [ |
||
53 | self::JIRA_STOP => [ |
||
54 | self::STATUS => 'To Do' |
||
55 | ], |
||
56 | self::JIRA_START => [ |
||
57 | self::STATUS => 'In Progress' |
||
58 | ], |
||
59 | self::JIRA_REVIEW => [ |
||
60 | self::STATUS => 'In Review' |
||
61 | ], |
||
62 | self::JIRA_DONE => [ |
||
63 | self::STATUS => 'Done' |
||
64 | ], |
||
65 | self::AVAILABLE_ISSUES => [ |
||
66 | 'Open', |
||
67 | 'In Progress', |
||
68 | 'Reopened', |
||
69 | 'To Do', |
||
70 | 'In Review', |
||
71 | 'Blocked', |
||
72 | 'Internal Testing' |
||
73 | ] |
||
74 | ]; |
||
75 | } |
||
76 | } |
||
77 |