ProcessConfig.php 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <?php
  2. namespace inter\gen;
  3. class ProcessConfig
  4. {
  5. // 文件名前缀
  6. public string $fileNamePrefix = "";
  7. // 文件名后缀
  8. public string $fileNameSuffix = "";
  9. // 命名空间
  10. private string $namespace = "";
  11. // 继承类
  12. public array $extends = [];
  13. // 是否有get方法
  14. public bool $isHasGetFunc = false;
  15. // 是否有set方法
  16. public bool $isHasSetFunc = false;
  17. // 文件保存的路径
  18. public string $savePath = "";
  19. /** @var string[] */
  20. private array $uses = [];
  21. public function SetNamespace(string $namespace): self
  22. {
  23. if ($namespace == "") return $this;
  24. $this->namespace = str_replace('/', "\\", $namespace);
  25. return $this;
  26. }
  27. public function addUse(string $use): self
  28. {
  29. if ($use == "") return $this;
  30. $use = str_replace('/', "\\", $use);
  31. $this->uses[] = $use;
  32. return $this;
  33. }
  34. public function getUses(): array
  35. {
  36. return $this->uses;
  37. }
  38. public function GetNamespace()
  39. {
  40. return $this->namespace;
  41. }
  42. }