TestTagTwo.php 338 B

123456789101112131415161718192021
  1. <?php
  2. namespace EasySwoole\Annotation\Tests\Tag;
  3. use EasySwoole\Annotation\AbstractAnnotationTag;
  4. /**
  5. * Class TestTagTwo
  6. * @package EasySwoole\Annotation\Tests\Tag
  7. * @Annotation
  8. */
  9. class TestTagTwo extends AbstractAnnotationTag
  10. {
  11. public $value;
  12. public function tagName(): string
  13. {
  14. return 'TestTagTwo';
  15. }
  16. }