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