k2gl/entity-exist
最新稳定版本:1.12.0
Composer 安装命令:
composer require k2gl/entity-exist
包简介
Checks if there is at least one row with the required field in the database, for example, a row with the same identifier
README 文档
README
Installation
You can add this library as a local, per-project dependency to your project using Composer:
composer require k2gl/entity-exist
Configuration
Makes classes in src/ available to be used as services in services.yaml
services:
K2gl\Component\Validator\Constraint\EntityExist\:
resource: '../vendor/k2gl/entity-exist/src/'
arguments: ['@doctrine.orm.entity_manager']
tags:
- { name: validator.constraint_validator }
Usage
AssertEntityNotExist
use K2gl\Component\Validator\Constraint\EntityExist\AssertEntityNotExist; readonly class RegisterUserOrder { public function __construct( #[Assert\NotBlank] #[Assert\Email] #[AssertEntityNotExist( entity: User::class, property: 'email', message: 'User with email "%value%" already registered.' )] public string $email, ) { } }
AssertEntityExist
use K2gl\Component\Validator\Constraint\EntityExist\AssertEntityExist; readonly class TransferUserToOtherUnitOrder { public function __construct( #[Assert\NotBlank] #[AssertEntityExist( entity: User::class, property: 'uuid', )] public string $user, #[Assert\NotBlank] #[AssertEntityExist( entity: Unit::class, property: 'uuid', )] public string $unit, ) { } }
Pull requests are always welcome
统计信息
- 总下载量: 1.33k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2022-10-20