Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
23 | 3 | public static function create(array $data): self |
|
24 | { |
||
25 | 3 | $model = new self(); |
|
26 | 3 | $model->deliverable = $data['deliverable'] ?? null; |
|
27 | 3 | $model->doNotSend = $data['do_not_send'] ?? null; |
|
28 | 3 | $model->undeliverable = $data['undeliverable'] ?? null; |
|
29 | 3 | $model->unknown = $data['unknown'] ?? null; |
|
30 | |||
31 | 3 | return $model; |
|
32 | } |
||
33 | |||
58 |