I have a case when i try to validate a property of an php PHP object, this property can be null but not empty string. Is it possible to do it with a single annotation like:
class JustAnObject
{
/**
* @Assert\NotBlankNullable
*/
private $Property;
}