Property.php 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. <?php
  2. namespace catcher\generate\build\classes;
  3. use PhpParser\BuilderFactory;
  4. class Property
  5. {
  6. protected $propertyBuild;
  7. public function __construct(string $name)
  8. {
  9. $this->propertyBuild = (new BuilderFactory())->property($name);
  10. }
  11. /**
  12. * @time 2020年11月17日
  13. * @return $this
  14. */
  15. public function public()
  16. {
  17. $this->propertyBuild->makePublic();
  18. return $this;
  19. }
  20. /**
  21. * @time 2020年11月17日
  22. * @return $this
  23. */
  24. public function protected()
  25. {
  26. $this->propertyBuild->makeProtected();
  27. return $this;
  28. }
  29. /**
  30. * @time 2020年11月17日
  31. * @return $this
  32. */
  33. public function private()
  34. {
  35. $this->propertyBuild->makePrivate();
  36. return $this;
  37. }
  38. /**
  39. * 注释
  40. *
  41. * @time 2020年11月16日
  42. * @param $comment
  43. * @return $this
  44. */
  45. public function static($comment)
  46. {
  47. $this->propertyBuild->makeStatic();
  48. return $this;
  49. }
  50. /**
  51. * set default
  52. *
  53. * @time 2020年11月16日
  54. * @param $value
  55. * @return $this
  56. */
  57. public function default($value)
  58. {
  59. $this->propertyBuild->setDefault($value);
  60. return $this;
  61. }
  62. public function type($type)
  63. {
  64. $this->propertyBuild->setType($type);
  65. return $this;
  66. }
  67. public function docComment($comment)
  68. {
  69. $this->propertyBuild->setDocComment($comment);
  70. return $this;
  71. }
  72. public function build()
  73. {
  74. return $this->propertyBuild;
  75. }
  76. }