HereForTesting.php 220 B

12345678910111213
  1. <?php
  2. namespace EasySwoole\DoctrineAnnotation\Tests\Fixtures;
  3. use EasySwoole\DoctrineAnnotation\Tests\Fixtures\Annotation\Secure;
  4. interface HereForTesting
  5. {
  6. /**
  7. * @Secure
  8. */
  9. public function foo();
  10. }