| 1 | <?php |
||
| 5 | class RelationshipKey |
||
| 6 | { |
||
| 7 | const DELIMITER = ':'; |
||
| 8 | |||
| 9 | private $id; |
||
| 10 | private $parentId; |
||
| 11 | |||
| 12 | public function __construct(string $id, string $parentId = null) |
||
| 17 | |||
| 18 | public function getId(): string |
||
| 22 | |||
| 23 | public function getParentId() |
||
| 27 | |||
| 28 | public function build(): string |
||
| 33 | |||
| 34 | public static function parse(string $key): RelationshipKey |
||
| 39 | } |