mirror of
https://github.com/alrayyes/wiki.git
synced 2024-11-22 03:26:22 +00:00
1 KiB
1 KiB
id | title |
---|---|
6216c1c5-a482-4141-a5af-46917a1f8cd3 | Compound Constraint |
Description
Use this when you want to use a set of constraints in multiple places.
Syntax
namespace App\Validator;
use Symfony\Component\Validator\Constraints\Compound;
use Symfony\Component\Validator\Constraints\Length;
use Symfony\Component\Validator\Constraints\NotBlank;
use Symfony\Component\Validator\Constraints\NotCompromisedPassword;
use Symfony\Component\Validator\Constraints\Type;
/**
* @Annotation
*/
class MatchesPasswordRequirements extends Compound
{
protected function getConstraints(array $options): array
{
return [
new NotBlank(),
new Type('string'),
new Length(['min' => 12]),
new NotCompromisedPassword(),
];
}
}
namespace App\Dto;
// ...
use App\Validator\MatchesPasswordRequirements;
class ChangePasswordDto
{
/**
* @MatchesPasswordRequirements
*/
private $newPassword;
// ...
}