| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 17 | final private function __construct() |
||
| 18 | { |
||
| 19 | $peopleJsonPath = __DIR__.'/data/people.json'; |
||
| 20 | $this->people = json_decode(file_get_contents($peopleJsonPath)); |
||
| 21 | |||
| 22 | $addressesJsonPath = __DIR__.'/data/addresses.json'; |
||
| 23 | $this->addresses = json_decode(file_get_contents($addressesJsonPath)); |
||
| 24 | } |
||
| 25 | |||
| 30 |