1 | <?php |
||
7 | class DocumentPath |
||
8 | { |
||
9 | use Presentable; |
||
10 | |||
11 | public $index; |
||
12 | public $type; |
||
13 | public $id; |
||
14 | public $parent; |
||
15 | |||
16 | 17 | public function __construct($index, $type, $id, $parent = null) |
|
23 | |||
24 | public function getIndex() |
||
28 | |||
29 | public function getType() |
||
33 | |||
34 | public function getId() |
||
38 | |||
39 | public function getParent() |
||
43 | |||
44 | public function getPath() |
||
58 | |||
59 | public function isValid() |
||
63 | } |
||
64 |