Hi,
I found an issue that an error is not raised when we have union type:
<?php
declare(strict_types=1);
namespace Devsense\Builtin;
final class MyClass
{
public UnknownA $a;
public UnknownA|UnknownB $b;
public UnknownA&UnknownB $c;
}
Thank you for the fix.