class MyClass { public function __construct( /** @var string */ public $a, ) {} } $property = new ReflectionProperty(MyClass::class, 'a'); $property->getDocComment(); // "/** @var string */"