| Total Complexity | 4 | 
| Total Lines | 28 | 
| Duplicated Lines | 0 % | 
| Coverage | 100% | 
| Changes | 2 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php  | 
            ||
| 17 | #[\Attribute(\Attribute::TARGET_CLASS), NamedArgumentConstructor]  | 
            ||
| 18 | final class Table  | 
            ||
| 19 | { | 
            ||
| 20 | /**  | 
            ||
| 21 | * @param Column[] $columns  | 
            ||
| 22 | * @param PrimaryKey|null $primary  | 
            ||
| 23 | * @param Index[] $indexes  | 
            ||
| 24 | */  | 
            ||
| 25 | 35 | public function __construct(  | 
            |
| 26 | private array $columns = [],  | 
            ||
| 27 | private ?PrimaryKey $primary = null,  | 
            ||
| 28 | private array $indexes = [],  | 
            ||
| 29 |     ) { | 
            ||
| 30 | 35 | }  | 
            |
| 31 | |||
| 32 | 19 | public function getColumns(): array  | 
            |
| 35 | }  | 
            ||
| 36 | |||
| 37 | 29 | public function getPrimary(): ?PrimaryKey  | 
            |
| 38 |     { | 
            ||
| 39 | 29 | return $this->primary;  | 
            |
| 40 | }  | 
            ||
| 41 | |||
| 42 | 29 | public function getIndexes(): array  | 
            |
| 45 | }  | 
            ||
| 46 | }  | 
            ||
| 47 |