Total Complexity | 3 |
Total Lines | 21 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
8 | final class AfterElementEvent implements AfterElementEventInterface |
||
9 | { |
||
10 | |||
11 | private $index; |
||
12 | |||
13 | private $path; |
||
14 | |||
15 | public function __construct(int $index, PathInterface $path) |
||
16 | { |
||
17 | $this->index = $index; |
||
18 | $this->path = $path; |
||
19 | } |
||
20 | |||
21 | public function getPath(): PathInterface |
||
24 | } |
||
25 | |||
26 | public function getIndex(): int |
||
29 | } |
||
30 | } |
||
31 |