You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
class IntersectionTypesNotSupported extends \TypeError
{
public readonly \ReflectionProperty $property;
public static function create(\ReflectionProperty $property): self
{
$new = new self();
$new->property = $property;
$new->message = sprintf('Serde does not currently support intersection type properties. The property %s has a union type, and thus cannot be serialized/deserialized.', $property->name);