ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
PathInterface.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
21namespace ILIAS\MetaData\Paths;
22
24
26{
31 public function steps(): \Generator;
32
37 public function isRelative(): bool;
38
43 public function leadsToExactlyOneElement(): bool;
44
45 public function toString(): string;
46}
isRelative()
Relative paths start at some otherwise determined element, absolute paths start at root.
steps()
Get all steps in the path.
leadsToExactlyOneElement()
Specifies whether the path should point to exactly one element, or whether it can also lead to no or ...