I have a Doctrine entity that has boolean field. Should I add Symfony validation for it (for type boolean), or my form is correctly validated by inferring the type automatically?
class Entity
{
/**
* @ORM\Column(type="boolean")
* @Assert\.... <- do I have to apply any Symfony assertion here?
*/
private $isActive;
}