ClassWithNotRegisteredAnnotationUsed.php 347 B

12345678910111213141516171819
  1. <?php
  2. namespace EasySwoole\DoctrineAnnotation\Tests\Fixtures;
  3. /**
  4. * @package EasySwoole\DoctrineAnnotation\Tests\Fixtures
  5. */
  6. class ClassWithNotRegisteredAnnotationUsed
  7. {
  8. /**
  9. * @return bool
  10. *
  11. * @notRegisteredCustomAnnotation
  12. */
  13. public function methodWithNotRegisteredAnnotation()
  14. {
  15. return false;
  16. }
  17. }