| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 7 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 51 | 1 | public function __construct( |
|
| 52 | array $names, |
||
| 53 | string $code, |
||
| 54 | string $currencyCode, |
||
| 55 | float $phonePrefix, |
||
| 56 | string $continent |
||
| 57 | ) { |
||
| 58 | 1 | $this->names = $names; |
|
| 59 | 1 | $this->code = $code; |
|
| 60 | 1 | $this->currencyCode = $currencyCode; |
|
| 61 | 1 | $this->phonePrefix = $phonePrefix; |
|
| 62 | 1 | $this->continent = $continent; |
|
| 63 | 1 | } |
|
| 64 | |||
| 134 |