| Total Complexity | 2 |
| Total Lines | 22 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 10 | class Card |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @var string[] |
||
| 14 | */ |
||
| 15 | protected array $value; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * @param string[] $card |
||
| 19 | */ |
||
| 20 | 13 | public function __construct(array $card) |
|
| 23 | } |
||
| 24 | |||
| 25 | /** |
||
| 26 | * Get the value of the current card. |
||
| 27 | * @return string[] |
||
| 28 | */ |
||
| 29 | 9 | public function getValue(): array |
|
| 34 |