Slide 41
Slide 41 text
Attributesのシンタックス
#[
ORM\Entity,
ORM\Table("user")
]
class User
{
#[ORM\Id, ORM\Column("integer"), ORM\GeneratedValue]
private $id;
#[ORM\Column("string", ORM\Column::UNIQUE)]
#[Assert\Email(["message" => "The email '{{ value }}' is not a valid email."])]
private $email;
}
https://wiki.php.net/rfc/shorter_attribute_syntax_change
Nextat Inc. 41