name = $name; } public function AddTable(Table $table): self { $this->tables[] = $table; return $this; } /** * @return Table[] */ public function GetTables(): array { return $this->tables; } }