| Conditions | 4 |
| Paths | 8 |
| Total Lines | 16 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 20 |
| Changes | 0 | ||
| 1 | <?php |
||
| 51 | public static function create(array $data) |
||
| 52 | { |
||
| 53 | $bounce = new self($data['address']); |
||
| 54 | |||
| 55 | if (isset($data['code'])) { |
||
| 56 | $bounce->setCode($data['code']); |
||
| 57 | } |
||
| 58 | if (isset($data['error'])) { |
||
| 59 | $bounce->setError($data['error']); |
||
| 60 | } |
||
| 61 | if (isset($data['created_at'])) { |
||
| 62 | $bounce->setCreatedAt(new \DateTime($data['created_at'])); |
||
| 63 | } |
||
| 64 | |||
| 65 | return $bounce; |
||
| 66 | } |
||
| 67 | |||
| 124 |