| Total Complexity | 2 |
| Total Lines | 14 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 8 | #[Attribute] |
||
| 9 | class UniqueId extends Constraint { |
||
| 10 | /** |
||
| 11 | * @var string |
||
| 12 | */ |
||
| 13 | public string $propertyPath; |
||
| 14 | |||
| 15 | public string $message = 'Id {{ id }} is used more than once. All ids must be unique.'; |
||
| 16 | |||
| 17 | public function __construct(mixed $options = null, array $groups = null, mixed $payload = null, ?string $propertyPath = null) { |
||
| 24 | } |