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