Conditions | 3 |
Paths | 4 |
Total Lines | 11 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 10 |
CRAP Score | 3 |
Changes | 2 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
27 | 2 | public function __construct($addressLine1 = null, $addressLine2 = null, $country = 'CH') |
|
28 | { |
||
29 | 2 | $this->addressLines = array(); |
|
30 | 2 | if ($addressLine1 !== null) { |
|
31 | 2 | $this->addressLines[] = $addressLine1; |
|
32 | 2 | } |
|
33 | 2 | if ($addressLine2 !== null) { |
|
34 | 2 | $this->addressLines[] = $addressLine2; |
|
35 | 2 | } |
|
36 | 2 | $this->country = (string) $country; |
|
37 | 2 | } |
|
38 | |||
54 |