/**
* @ORM\Column(type="string", length=255)
*
* @Assert\NotBlank(message="Please enter your name.", groups={"Registration", "Profile"})
* @Assert\MinLength(limit="3", message="The name is too short.", groups={"Registration", "Profile"})
* @Assert\MaxLength(limit="255", message="The name is too long.", groups={"Registration", "Profile"})
*/
protected $name;
你的 Annotations 注释包含两个部分,实体字段 (Column) 和 验证规则 (Assert),在 Symfony 中需要分别定义到两个 Yml 文件中。
实体字段:
http://symfony.com/doc/current/book/doctrine.html
验证规则:
http://symfony.com/doc/current/book/validation.html