我在读这个
http://symfony.com/doc/current/reference/constraints/NotNull.html
// src/Acme/BlogBundle/Entity/Author.php
namespace Acme\BlogBundle\Entity;
use Symfony\Component\Validator\Constraints as Assert;
class Author
{
/**
* @Assert\NotNull()
*/
protected $firstName;
}
现在我想知道当我提交时form
我firstname
是null
我试着保存它。然后按哪个顺序执行验证。我是说
- 我的意思是当 symfony 读取非空注释时,它是如何读取它的
- 它用于检查的确切步骤/文件