17 lines
302 B
PHP
17 lines
302 B
PHP
<?php
|
|
|
|
namespace App\Validator\Constraints;
|
|
|
|
use Symfony\Component\Validator\Constraint;
|
|
|
|
#[\Attribute]
|
|
class Booking extends Constraint
|
|
{
|
|
public string $message = 'Bitte prüfe deine Angaben.';
|
|
|
|
public function getTargets(): array|string
|
|
{
|
|
return static::CLASS_CONSTRAINT;
|
|
}
|
|
}
|