4 * This file is part of the Symfony package.
6 * (c) Fabien Potencier <fabien@symfony.com>
8 * For the full copyright and license information, please view the LICENSE
9 * file that was distributed with this source code.
12 namespace Symfony\Component\Form\Extension\Validator\ViolationMapper
;
14 use Symfony\Component\Form\FormInterface
;
15 use Symfony\Component\Validator\ConstraintViolation
;
18 * @author Bernhard Schussek <bschussek@gmail.com>
20 interface ViolationMapperInterface
23 * Maps a constraint violation to a form in the form tree under
26 * @param ConstraintViolation $violation The violation to map.
27 * @param FormInterface $form The root form of the tree
29 * @param Boolean $allowNonSynchronized Whether to allow
30 * mapping to non-synchronized forms.
32 public function mapViolation(ConstraintViolation
$violation, FormInterface
$form, $allowNonSynchronized = false);