TestInterface.php 207B

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