Attr.php 717 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <?php
  2. namespace inter\phpStruct;
  3. class Attr
  4. {
  5. private string $name;
  6. private string $comment;
  7. private string $type;
  8. public function SetName(string $val): self
  9. {
  10. $this->name = $val;
  11. return $this;
  12. }
  13. public function GetName(): string
  14. {
  15. return $this->name;
  16. }
  17. public function SetComment(string $val): self
  18. {
  19. $this->comment = $val;
  20. return $this;
  21. }
  22. public function GetComment(): string
  23. {
  24. return $this->comment;
  25. }
  26. public function SetType(string $val): self
  27. {
  28. $this->type = $val;
  29. return $this;
  30. }
  31. public function GetType(): string
  32. {
  33. return $this->type;
  34. }
  35. }