ReflectionProperty::hasType
プロパティが型を持つかをチェックする
説明
public bool ReflectionProperty::hasType()
戻り値
型が指定されていれば true
そうでなければ false
例
例1 ReflectionProperty::hasType の例
<?php
class User
{
public string $name;
}
$rp = new ReflectionProperty('User', 'name');
var_dump($rp->hasType());
?>
参考
- ReflectionProperty::getType
- ReflectionProperty::isInitialized