ClassOverwritesTrait.php 363 B

123456789101112131415161718192021222324
  1. <?php
  2. namespace EasySwoole\DoctrineAnnotation\Tests\Fixtures;
  3. use EasySwoole\DoctrineAnnotation\Tests\Bar2\Autoload;
  4. class ClassOverwritesTrait
  5. {
  6. use TraitWithAnnotatedMethod;
  7. /**
  8. * @Autoload
  9. */
  10. public function traitMethod(): void
  11. {
  12. }
  13. }
  14. namespace EasySwoole\DoctrineAnnotation\Tests\Bar2;
  15. /** @Annotation */
  16. class Autoload
  17. {
  18. }