Table2PHPClass.php 328 B

123456789101112131415161718192021
  1. <?php
  2. namespace inter\phpStruct;
  3. use inter\mysqlStruct\Table;
  4. class Table2PHPClass extends PHPClass
  5. {
  6. private Table $table;
  7. public function SetTable(Table $table): self
  8. {
  9. $this->table = $table;
  10. return $this;
  11. }
  12. public function GetTable(): Table
  13. {
  14. return $this->table;
  15. }
  16. }