Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Tests | 9 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
54 | 5 | public function __construct(array $data) |
|
55 | { |
||
56 | 5 | $this->name = $data['name'] ?? null; |
|
57 | 5 | $this->period = $data['period'] ?? null; |
|
58 | 5 | $this->title = $data['title'] ?? null; |
|
59 | 5 | $this->description = $data['description'] ?? null; |
|
60 | 5 | $this->id = $data['id'] ?? null; |
|
61 | 5 | $this->tag = $data['tag'] ?? null; |
|
62 | |||
63 | 5 | $this->setValues($data); |
|
64 | 5 | } |
|
65 | |||
148 |