| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 2 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 14 | public function __construct( |
||
| 15 | TranslatorInterface $translator, |
||
| 16 | string $name, |
||
| 17 | string $alpha2, |
||
| 18 | string $alpha3, |
||
| 19 | string $scope, |
||
| 20 | string $type, |
||
| 21 | ?string $invertedName = null |
||
| 22 | ) { |
||
| 23 | parent::__construct($translator, $name, $alpha3, $scope, $type, $invertedName, $alpha2); |
||
| 24 | $this->alpha2 = $alpha2; |
||
| 25 | } |
||
| 32 |