Total Complexity | 8 |
Total Lines | 57 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
7 | class Seat |
||
8 | { |
||
9 | private ?string $description; |
||
10 | private ?string $identifier; |
||
11 | private ?string $number; |
||
12 | private ?string $row; |
||
13 | private ?string $section; |
||
14 | private ?string $type; |
||
15 | |||
16 | public function __construct( |
||
30 | } |
||
31 | |||
32 | /** |
||
33 | * @return array<string, string> |
||
34 | */ |
||
35 | public function getValue(): array |
||
66 |