Conditions | 3 |
Paths | 4 |
Total Lines | 13 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 3.0987 |
Changes | 0 |
1 | <?php |
||
46 | 2 | public static function create(array $data) |
|
47 | { |
||
48 | 2 | $unsubscribe = new self($data['address']); |
|
49 | |||
50 | 2 | if (isset($data['tags'])) { |
|
51 | 1 | $unsubscribe->setTags($data['tags']); |
|
52 | 1 | } |
|
53 | 2 | if (isset($data['created_at'])) { |
|
54 | $unsubscribe->setCreatedAt(new \DateTime($data['created_at'])); |
||
55 | } |
||
56 | |||
57 | 2 | return $unsubscribe; |
|
58 | } |
||
59 | |||
100 |