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