InterfaceThatExtendsAnInterface.php 299 B

12345678910111213
  1. <?php
  2. namespace EasySwoole\DoctrineAnnotation\Tests\Fixtures;
  3. use EasySwoole\DoctrineAnnotation\Tests\Fixtures\Annotation\Route;
  4. use EasySwoole\DoctrineAnnotation\Tests\Fixtures\EmptyInterface;
  5. /**
  6. * @Route("/someprefix")
  7. */
  8. interface InterfaceThatExtendsAnInterface extends EmptyInterface
  9. {
  10. }