| Total Complexity | 4 |
| Total Lines | 26 |
| Duplicated Lines | 0 % |
| Changes | 2 | ||
| Bugs | 1 | Features | 0 |
| 1 | <?php |
||
| 9 | class Seats implements SemanticTag |
||
| 10 | { |
||
| 11 | /** @var Seat[] */ |
||
| 12 | private array $seats = []; |
||
| 13 | |||
| 14 | public function addSeat(Seat $seat): void |
||
| 17 | } |
||
| 18 | |||
| 19 | public function getKey(): string |
||
| 22 | } |
||
| 23 | /** |
||
| 24 | * @return array<array<string, string>> |
||
| 25 | */ |
||
| 26 | public function getValue(): array |
||
| 35 | } |
||
| 36 | } |