我有一个具有布尔字段的 Doctrine 实体。我应该为其添加 Symfony 验证(对于布尔类型),还是通过自动推断类型来正确验证我的表单?
class Entity
{
/**
* @ORM\Column(type="boolean")
* @Assert\.... <- do I have to apply any Symfony assertion here?
*/
private $isActive;
}
我有一个具有布尔字段的 Doctrine 实体。我应该为其添加 Symfony 验证(对于布尔类型),还是通过自动推断类型来正确验证我的表单?
class Entity
{
/**
* @ORM\Column(type="boolean")
* @Assert\.... <- do I have to apply any Symfony assertion here?
*/
private $isActive;
}