reflection
0.4.4
태풍 reflection 기본 PHP reflection 의 대안입니다. 그것은:
composer require typhoon/ reflection typhoon/phpstorm- reflection -stubs
typhoon/phpstorm- reflection -stubs
jetbrains/phpstorm-stubs
위한 브릿지입니다. 이 패키지가 없으면 내부 클래스와 함수는 템플릿 없이 기본 reflection 에서 반영됩니다.
use Typhoon reflection TyphoonReflector ;
use Typhoon Type types ;
use function Typhoon Type stringify ;
/**
* @template TTag of non-empty-string
*/
final readonly class Article
{
/**
* @param list<TTag> $tags
*/
public function __construct (
private array $ tags ,
) {}
}
$ reflector = TyphoonReflector:: build ();
$ class = $ reflector -> reflectClass (Article::class);
$ tagsType = $ class -> properties ()[ ' tags ' ]-> type ();
var_dump ( stringify ( $ tagsType )); // "list<TTag#Article>"
$ templateResolver = $ class -> createTemplateResolver ([
types:: union (
types:: string ( ' PHP ' ),
types:: string ( ' Architecture ' ),
),
]);
var_dump ( stringify ( $ tagsType -> accept ( $ templateResolver ))); // "list<'PHP'|'Architecture'>"
문서화는 아직 완료되지 않았습니다. 사물이 어떻게 작동하는지 명확히 하기 위해 주저하지 말고 이슈를 만들어보세요.