Classes.php 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. <?php
  2. namespace catcher\generate\build\classes;
  3. use PhpParser\BuilderFactory;
  4. class Classes
  5. {
  6. protected $classBuild;
  7. public function __construct(string $name)
  8. {
  9. $this->classBuild = (new BuilderFactory())->class($name);
  10. }
  11. /**
  12. * 设置 comment
  13. *
  14. * @time 2020年11月19日
  15. * @param string $comment
  16. * @return $this
  17. */
  18. public function docComment($comment="\r\n")
  19. {
  20. $this->classBuild->setDocComment($comment);
  21. return $this;
  22. }
  23. /**
  24. * @time 2020年11月17日
  25. * @param $extend
  26. * @return $this
  27. */
  28. public function extend($extend)
  29. {
  30. $this->classBuild->extend($extend);
  31. return $this;
  32. }
  33. /**
  34. * @time 2020年11月17日
  35. * @param $interfaces
  36. * @return $this
  37. */
  38. public function implement($interfaces)
  39. {
  40. $this->classBuild->implement($interfaces);
  41. return $this;
  42. }
  43. /**
  44. * @time 2020年11月17日
  45. * @return $this
  46. */
  47. public function abstract()
  48. {
  49. $this->classBuild->makeAbstract();
  50. return $this;
  51. }
  52. /**
  53. * @time 2020年11月17日
  54. * @return $this
  55. */
  56. public function final()
  57. {
  58. $this->classBuild->makeFinal();
  59. return $this;
  60. }
  61. public function build()
  62. {
  63. return $this->classBuild;
  64. }
  65. public function addMethod(Methods $method)
  66. {
  67. $this->classBuild->addStmt($method->build());
  68. return $this;
  69. }
  70. public function addProperty(Property $property)
  71. {
  72. $this->classBuild->addStmt($property->build());
  73. return $this;
  74. }
  75. public function addTrait(Traits $trait)
  76. {
  77. $this->classBuild->addStmt($trait->build());
  78. return $this;
  79. }
  80. /**
  81. * when
  82. *
  83. * @time 2020年11月19日
  84. * @param $condition
  85. * @param \Closure $closure
  86. * @return $this
  87. */
  88. public function when($condition, \Closure $closure)
  89. {
  90. if ($condition) {
  91. $closure($this);
  92. }
  93. return $this;
  94. }
  95. }