mirror of
https://github.com/alrayyes/wiki.git
synced 2024-11-22 11:36:23 +00:00
347 B
347 B
date | id | title |
---|---|---|
20201112 | ebceb7b8-5242-482b-b258-2cf9c25d1788 | Unique Constraint |
Syntax
// src/Entity/Person.php
namespace App\Entity;
use Symfony\Component\Validator\Constraints as Assert;
class Person
{
/**
* @Assert\Unique(message="The {{ value }} email is repeated.")
*/
protected $contactEmails;
}