ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
isParent.php
Go to the documentation of this file.
2 
8 interface isParent extends isItem
9 {
10 
14  public function getChildren() : array;
15 
16 
22  public function withChildren(array $children) : isParent;
23 
24 
32  public function appendChild(isChild $child) : isParent;
33 
34 
38  public function hasChildren() : bool;
39 }