| Total Complexity | 2 |
| Total Lines | 17 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 22 | class EnumColumn extends AbstractColumn implements ColumnInterface |
||
| 23 | { |
||
| 24 | /** |
||
| 25 | * @param string $name |
||
| 26 | * @param array<string> $values |
||
| 27 | */ |
||
| 28 | public function __construct(string $name, private readonly array $values) |
||
| 31 | } |
||
| 32 | |||
| 33 | /** |
||
| 34 | * @return array<string> |
||
| 35 | */ |
||
| 36 | public function values(): array |
||
| 41 |