Func.php 311 B

123456789101112131415161718192021
  1. <?php
  2. namespace inter\phpStruct;
  3. class Func
  4. {
  5. private $name;
  6. private $isStatic;
  7. public function SetName(string $name): self
  8. {
  9. $this->name = $name;
  10. return $this;
  11. }
  12. public function SetIsStatic(): self
  13. {
  14. $this->isStatic = true;
  15. return $this;
  16. }
  17. }