| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 15 | public function __construct($id, $continent_code, $name, $country_iso2, $country_iso3, $type) { |
||
| 16 | $this->id = $id; |
||
| 17 | $this->continent_code = $continent_code; |
||
| 18 | $this->name = $name; |
||
| 19 | $this->country_iso2 = $country_iso2; |
||
| 20 | $this->country_iso3 = $country_iso3; |
||
| 21 | $this->type = $type; |
||
| 22 | } |
||
| 44 |