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