Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
54 | 3 | public function __construct(array $attributes) |
|
55 | { |
||
56 | 3 | $this->id = $attributes['id'] ?? null; |
|
57 | 3 | $this->title = $attributes['title']; |
|
58 | 3 | $this->description = $attributes['description']; |
|
59 | 3 | $this->status = $attributes['status']; |
|
60 | 3 | $this->priority = $attributes['priority'] ?? null; |
|
61 | 3 | $this->assignee = $attributes['assignee'] ?? null; |
|
62 | 3 | } |
|
64 |