https://github.com/swoft-cloud/swoft-component/blob/b60c4f5b539567f7092bacd9e0cd41ed883717af/src/bean/src/Annotation/Parser/InjectParser.php#L50 https://www.php.net/manual/reflectionproperty.gettype.php For example: ``` /** * @Inject() */ private SomeInterface $someProperty; ``` Instead of ``` /** * @Inject(SomeInterface::class) */ private SomeInterface $someProperty; ``` Or more ugly ``` /** * @var SomeInterface */ private SomeInterface $someProperty; ```
swoft-component/src/bean/src/Annotation/Parser/InjectParser.php
Line 50 in b60c4f5
https://www.php.net/manual/reflectionproperty.gettype.php
For example:
Instead of
Or more ugly