ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
PathInterface.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 namespace ILIAS\MetaData\Paths;
22 
24 
25 interface PathInterface
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 }
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 ...
isRelative()
Relative paths start at some otherwise determined element, absolute paths start at root...