TestTagOne.php 336 B

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