123456789101112131415161718192021222324252627282930 |
- <?php
- namespace EasySwoole\DoctrineAnnotation\Tests\Fixtures;
- use EasySwoole\DoctrineAnnotation\Tests\Bar\Autoload;
- class ClassUsesTrait
- {
- use TraitWithAnnotatedMethod;
- /**
- * @var mixed
- * @Autoload
- */
- public $aProperty;
- /**
- * @Autoload
- */
- public function someMethod(): void
- {
- }
- }
- namespace EasySwoole\DoctrineAnnotation\Tests\Bar;
- /** @Annotation */
- class Autoload
- {
- }
|