| Total Complexity | 3 | 
| Total Lines | 36 | 
| Duplicated Lines | 0 % | 
| Changes | 0 | ||
| 1 | <?php | ||
| 6 | class ExtraFrontendResult | ||
| 7 | { | ||
| 8 | /** | ||
| 9 | * @var int | ||
| 10 | */ | ||
| 11 | private $type; | ||
| 12 | |||
| 13 | /** | ||
| 14 | * @var string | ||
| 15 | */ | ||
| 16 | private $countryName; | ||
| 17 | |||
| 18 | /** | ||
| 19 | * @param int $type | ||
| 20 | * @param string $countryName | ||
| 21 | */ | ||
| 22 | public function __construct(int $type, string $countryName) | ||
| 26 | } | ||
| 27 | |||
| 28 | /** | ||
| 29 | * @return int | ||
| 30 | */ | ||
| 31 | public function getType(): int | ||
| 32 |     { | ||
| 33 | return $this->type; | ||
| 34 | } | ||
| 35 | |||
| 36 | /** | ||
| 37 | * @return string | ||
| 38 | */ | ||
| 39 | public function getCountryName(): string | ||
| 42 | } | ||
| 43 | } |