mirror of
https://github.com/alrayyes/wiki.git
synced 2024-11-21 19:16:23 +00:00
684 B
684 B
date | id | title |
---|---|---|
2020-11-09 | 5da0c739-af47-49dd-84ea-bb2e48e4a9d8 | Groups support for Valid constraint |
Introduction
As per Symfony 4.0 validation groups are
supported for the Valid
constraint.
Syntax
// src/AppBundle/Entity/Address.php
// ...
class Address
{
/** @Assert\NotBlank(groups={"basic"}) */
protected $street;
/** @Assert\Length(max = 5) */
protected $zipCode;
}
// src/AppBundle/Entity/Author.php
// ...
class Author
{
/** @Assert\NotBlank */
protected $firstName;
/** @Assert\NotBlank */
protected $lastName;
/** @Assert\Valid(groups={"basic"}) */
protected $address;
}