n7/symfony-validators-bundle
最新稳定版本:v2.0.1
Composer 安装命令:
composer require n7/symfony-validators-bundle
包简介
README 文档
README
Usage examples
NestedObject and NestedObjects validators
use N7\SymfonyValidatorsBundle\Validator\NestedObject; use N7\SymfonyValidatorsBundle\Validator\NestedObjects; use Symfony\Component\Validator\Constraints; final class Book { #[Constraints\NotBlank] #[Constraints\Type('integer')] private int $id; #[Constraints\NotBlank] #[Constraints\Type('string')] private string $title; } final class Reader { #[Constraints\NotBlank] #[Constraints\Type('integer')] private int $id; #[Constraints\NotBlank] #[NestedObject(Book::class)] private Book $favoriteBook; /** * @var Book[] */ #[Constraints\NotBlank] #[NestedObjects(Book::class)] private array $readedBooks; }
统计信息
- 总下载量: 197.52k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 1
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2021-01-10