| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 7 |
| CRAP Score | 1 |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 44 | 2 | public function __construct($street, $buildingNo, $postCode, $town, $country = 'CH') |
|
| 45 | { |
||
| 46 | 2 | $this->street = (string) $street; |
|
| 47 | 2 | $this->buildingNo = $buildingNo; |
|
| 48 | 2 | $this->postCode = (string) $postCode; |
|
| 49 | 2 | $this->town = (string) $town; |
|
| 50 | 2 | $this->country = (string) $country; |
|
| 51 | 2 | } |
|
| 52 | |||
| 71 |