]>
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\PropertyAccess\PropertyPath; | |
16 | ||
17 | /** | |
18 | * @author Bernhard Schussek <bschussek@gmail.com> | |
19 | */ | |
20 | class RelativePath extends PropertyPath | |
21 | { | |
22 | /** | |
23 | * @var FormInterface | |
24 | */ | |
25 | private $root; | |
26 | ||
27 | /** | |
28 | * @param FormInterface $root | |
29 | * @param string $propertyPath | |
30 | */ | |
31 | public function __construct(FormInterface $root, $propertyPath) | |
32 | { | |
33 | parent::__construct($propertyPath); | |
34 | ||
35 | $this->root = $root; | |
36 | } | |
37 | ||
38 | /** | |
39 | * @return FormInterface | |
40 | */ | |
41 | public function getRoot() | |
42 | { | |
43 | return $this->root; | |
44 | } | |
45 | } |