AnnotatedWithAlias.php 254 B

1234567891011121314
  1. <?php
  2. namespace EasySwoole\DoctrineAnnotation\Tests\Fixtures\IgnoredNamespaces;
  3. use SomePropertyAnnotationNamespace\Subnamespace as SomeAlias;
  4. class AnnotatedWithAlias
  5. {
  6. /**
  7. * @var mixed
  8. * @SomeAlias\Name
  9. */
  10. public $property;
  11. }