1 | <?php |
||
11 | class ParsingError implements ParsingErrorInterface |
||
12 | { |
||
13 | |||
14 | protected $rule; |
||
15 | |||
16 | protected $index; |
||
17 | |||
18 | private $depth; |
||
19 | |||
20 | public function __construct(RuleInterface $rule, $index, $depth) |
||
26 | |||
27 | public function rule() |
||
31 | |||
32 | public function position() |
||
36 | |||
37 | public function depth() |
||
41 | } |
||
42 |