Total Complexity | 1 |
Total Lines | 57 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
5 | class Task extends Resource |
||
6 | { |
||
7 | /** |
||
8 | * The id of the issue. |
||
9 | * |
||
10 | * @var string |
||
11 | */ |
||
12 | public $id; |
||
13 | |||
14 | /** |
||
15 | * The title of the task. |
||
16 | * |
||
17 | * @var string |
||
18 | */ |
||
19 | public $title; |
||
20 | |||
21 | /** |
||
22 | * The description of the task. |
||
23 | * |
||
24 | * @var string |
||
25 | */ |
||
26 | public $description; |
||
27 | |||
28 | /** |
||
29 | * The task status. |
||
30 | * |
||
31 | * @var array |
||
32 | */ |
||
33 | public $status; |
||
34 | |||
35 | /** |
||
36 | * The task priority. |
||
37 | * |
||
38 | * @var array |
||
39 | */ |
||
40 | public $priority; |
||
41 | |||
42 | /** |
||
43 | * The task assignee. |
||
44 | * |
||
45 | * @var array |
||
46 | */ |
||
47 | public $assignee; |
||
48 | |||
49 | /** |
||
50 | * Create a new resource instance. |
||
51 | * |
||
52 | * @param $attributes |
||
53 | */ |
||
54 | 3 | public function __construct(array $attributes) |
|
64 |