| Conditions | 1 |
| Paths | 1 |
| Total Lines | 14 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 52 | public function __construct( |
||
| 53 | $name, |
||
| 54 | $alpha3, |
||
| 55 | $scope, |
||
| 56 | $type, |
||
| 57 | $invertedName = null, |
||
| 58 | $alpha2 = null |
||
| 59 | ) { |
||
| 60 | $this->name = $name; |
||
| 61 | $this->alpha3 = $alpha3; |
||
| 62 | $this->scope = $scope; |
||
| 63 | $this->type = $type; |
||
| 64 | $this->invertedName = $invertedName; |
||
| 65 | $this->alpha2 = $alpha2; |
||
| 66 | } |
||
| 132 |