ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
TopParentItem.php
Go to the documentation of this file.
2
6
13{
14
18 protected $title = '';
22 protected $icon_path = '';
23
24
30 public function withTitle(string $title) : hasTitle
31 {
32 $clone = clone($this);
33 $clone->title = $title;
34
35 return $clone;
36 }
37
38
42 public function getTitle() : string
43 {
44 return $this->title;
45 }
46}
An exception for terminatinating execution or to throw for unit testing.