ClassThatUsesTraitThatUsesAnotherTrait.php 332 B

1234567891011121314
  1. <?php
  2. namespace EasySwoole\DoctrineAnnotation\Tests\Fixtures;
  3. use EasySwoole\DoctrineAnnotation\Tests\Fixtures\Annotation\Route;
  4. use EasySwoole\DoctrineAnnotation\Tests\Fixtures\Traits\TraitThatUsesAnotherTrait;
  5. /**
  6. * @Route("/someprefix")
  7. */
  8. class ClassThatUsesTraitThatUsesAnotherTrait
  9. {
  10. use TraitThatUsesAnotherTrait;
  11. }