]>
Commit | Line | Data |
---|---|---|
4f5b44bd NL |
1 | <?php |
2 | ||
3 | /* | |
4 | * This file is part of the Symfony package. | |
5 | * | |
6 | * (c) Fabien Potencier <fabien@symfony.com> | |
7 | * | |
8 | * For the full copyright and license information, please view the LICENSE | |
9 | * file that was distributed with this source code. | |
10 | */ | |
11 | ||
12 | namespace Symfony\Component\Form\Extension\Validator\ViolationMapper; | |
13 | ||
14 | use Symfony\Component\Form\FormInterface; | |
15 | use Symfony\Component\Validator\ConstraintViolation; | |
16 | ||
17 | /** | |
18 | * @author Bernhard Schussek <bschussek@gmail.com> | |
19 | */ | |
20 | interface ViolationMapperInterface | |
21 | { | |
22 | /** | |
23 | * Maps a constraint violation to a form in the form tree under | |
24 | * the given form. | |
25 | * | |
26 | * @param ConstraintViolation $violation The violation to map. | |
27 | * @param FormInterface $form The root form of the tree | |
28 | * to map it to. | |
29 | * @param Boolean $allowNonSynchronized Whether to allow | |
30 | * mapping to non-synchronized forms. | |
31 | */ | |
32 | public function mapViolation(ConstraintViolation $violation, FormInterface $form, $allowNonSynchronized = false); | |
33 | } |