Field2Attr.php 320 B

123456789101112131415161718192021
  1. <?php
  2. namespace inter\phpStruct;
  3. use inter\mysqlStruct\Column;
  4. class Field2Attr extends Attr {
  5. private Column $column;
  6. public function SetColumn(Column $val):self {
  7. $this->column = $val;
  8. return $this;
  9. }
  10. public function GetColumn():Column {
  11. return $this->column;
  12. }
  13. }