| Conditions | 4 |
| Paths | 8 |
| Total Lines | 14 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 8 |
| CRAP Score | 4 |
| Changes | 0 | ||
| 1 | <?php |
||
| 30 | 22 | final public function __construct(?array $data) |
|
| 31 | { |
||
| 32 | 22 | $this->postcode = $data['postcode'] ?? null; |
|
| 33 | |||
| 34 | 22 | if (isset($data['city'])) { |
|
| 35 | 12 | $this->city = new City($data); |
|
| 36 | } |
||
| 37 | |||
| 38 | 22 | if (isset($data['country_code'])) { |
|
| 39 | 4 | $this->country = new Country($data); |
|
| 40 | } |
||
| 41 | |||
| 42 | 22 | if (! empty($this->postcode)) { |
|
| 43 | 15 | $this->sanitize(); |
|
| 44 | } |
||
| 75 |