Conditions | 5 |
Paths | 1 |
Total Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 5 |
Changes | 0 |
1 | <?php |
||
41 | 4 | public static function create(array $data) |
|
42 | { |
||
43 | 4 | return new self( |
|
44 | 4 | isset($data['name']) ? $data['name'] : null, |
|
45 | 4 | isset($data['address']) ? $data['address'] : null, |
|
46 | 4 | isset($data['vars']) ? $data['vars'] : [], |
|
47 | 4 | isset($data['subscribed']) ? (bool) $data['subscribed'] : null |
|
48 | 4 | ); |
|
49 | } |
||
50 | |||
91 |