Open lifinsky opened 4 years ago
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;
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:
Instead of
Or more ugly