Database.php 460 B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. namespace inter\mysqlStruct;
  3. class Database
  4. {
  5. private string $name;
  6. /** @var Table[] */
  7. private array $tables;
  8. public function __construct(string $name)
  9. {
  10. $this->name = $name;
  11. }
  12. public function AddTable(Table $table): self
  13. {
  14. $this->tables[] = $table;
  15. return $this;
  16. }
  17. /**
  18. * @return Table[]
  19. */
  20. public function GetTables(): array
  21. {
  22. return $this->tables;
  23. }
  24. }