Hi,
The color for the type related to the set hook is white instead of the right color:
<?php
class MyClass
{
public private(set) stdClass $test {
set(stdClass $data) => $this->test = $data;
}
}
stdClass must have the right color
We can have ?stdClass, string or any valid type definition
The second issue is related to the references for property hooks:
<?php
class MyClass
{
public private(set) stdClass $test {
set(stdClass $data) => $this->test = $data;
}
}
test property has not the references details above

Thank you for the fixes.