Methods.php 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  1. <?php
  2. namespace catcher\generate\build\classes;
  3. use catcher\generate\build\traits\CatchMethodReturn;
  4. use PhpParser\BuilderFactory;
  5. use PhpParser\Node\Expr\Assign;
  6. use PhpParser\Node\Expr\PropertyFetch;
  7. use PhpParser\Node\Expr\Variable;
  8. use PhpParser\Node\Identifier;
  9. use PhpParser\Node\Stmt\Expression;
  10. class Methods
  11. {
  12. use CatchMethodReturn;
  13. protected $methodBuild;
  14. public function __construct(string $name)
  15. {
  16. $this->methodBuild = (new BuilderFactory())->method($name);
  17. }
  18. public function public()
  19. {
  20. $this->methodBuild->makePublic();
  21. return $this;
  22. }
  23. public function protected()
  24. {
  25. $this->methodBuild->makeProtected();
  26. return $this;
  27. }
  28. public function private()
  29. {
  30. $this->methodBuild->makePrivate();
  31. return $this;
  32. }
  33. /**
  34. * set params
  35. *
  36. * @time 2020年11月16日
  37. * @param $type
  38. * @param $param
  39. * @param $default
  40. * @return $this
  41. */
  42. public function param($param, $type = null, $default = null)
  43. {
  44. $param = (new BuilderFactory())->param($param);
  45. if ($type) {
  46. $param = $param->setType($type);
  47. }
  48. if ($default) {
  49. $param = $param->setDefault($default);
  50. }
  51. $this->methodBuild->addParam(
  52. $param
  53. );
  54. return $this;
  55. }
  56. /**
  57. * 定义
  58. *
  59. * @time 2020年11月18日
  60. * @param $variable
  61. * @param $value
  62. * @return $this
  63. */
  64. public function declare($variable, $value)
  65. {
  66. $smt = new Expression(
  67. new Assign(
  68. new PropertyFetch(
  69. new Variable('this'),
  70. new Identifier($variable)
  71. ),
  72. new Variable($value)
  73. )
  74. );
  75. $this->methodBuild->addStmt($smt);
  76. return $this;
  77. }
  78. /**
  79. * 返回值
  80. *
  81. * @time 2020年11月16日
  82. * @param $returnType
  83. * @return $this
  84. */
  85. public function returnType($returnType)
  86. {
  87. $this->methodBuild->setReturnType($returnType);
  88. return $this;
  89. }
  90. /**
  91. * 注释
  92. *
  93. * @time 2020年11月16日
  94. * @param $comment
  95. * @return $this
  96. */
  97. public function docComment(string $comment)
  98. {
  99. $this->methodBuild->setDocComment($comment);
  100. return $this;
  101. }
  102. /**
  103. * 抽象
  104. *
  105. * @time 2020年11月17日
  106. * @return $this
  107. */
  108. public function toAbstract()
  109. {
  110. $this->methodBuild->makeAbstract();
  111. return $this;
  112. }
  113. /**
  114. * final
  115. *
  116. * @time 2020年11月17日
  117. * @return $this
  118. */
  119. public function toFinal()
  120. {
  121. $this->methodBuild->makeFinal();
  122. return $this;
  123. }
  124. public function build()
  125. {
  126. return $this->methodBuild;
  127. }
  128. }