ClassWithFullPathUseStatement.php 350 B

12345678910111213141516
  1. <?php
  2. namespace EasySwoole\DoctrineAnnotation\Tests\Fixtures;
  3. /**
  4. * The leading \ is intentional to ensure that code using
  5. * this use statement format works see issue #115/PR #120
  6. */
  7. use \EasySwoole\DoctrineAnnotation\Tests\Fixtures\Annotation as Annotations;
  8. /**
  9. * @Annotations\SingleUseAnnotation
  10. */
  11. class ClassWithFullPathUseStatement
  12. {
  13. }