-
-
Notifications
You must be signed in to change notification settings - Fork 103
Expand file tree
/
Copy pathConstraintValidatorInterface.php
More file actions
36 lines (31 loc) · 987 Bytes
/
ConstraintValidatorInterface.php
File metadata and controls
36 lines (31 loc) · 987 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Symfony\Component\Validator;
use Symfony\Component\Validator\Context\ExecutionContextInterface;
/**
* @author Bernhard Schussek <bschussek@gmail.com>
*
* @method void validateInContext(mixed $value, Constraint $constraint, ExecutionContextInterface $context)
*/
interface ConstraintValidatorInterface
{
/**
* Initializes the constraint validator.
*
* @deprecated since Symfony 8.1, use "validateInContext()" instead
*/
public function initialize(ExecutionContextInterface $context): void;
/**
* Checks if the passed value is valid.
*
* @deprecated since Symfony 8.1, use "validateInContext()" instead
*/
public function validate(mixed $value, Constraint $constraint): void;
}