framework icon indicating copy to clipboard operation
framework copied to clipboard

[ORM][Entity] Add Assert or Validate

Open asika32764 opened this issue 2 years ago • 0 comments

class User
{
    #[\Assert\All(
        new \Assert\NotNull,
        new \Assert\Length(min: 6))
    ]
    public string $name = '';
}

asika32764 avatar Dec 01 '21 18:12 asika32764