ILIAS  trunk Revision v11.0_alpha-2658-ge2404539063
hasTitle.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
27 interface hasTitle
28 {
33  public function withTitle(string $title): hasTitle;
34 
38  public function getTitle(): string;
39 
44  public function withSummary(string $summary): isItem;
45 
49  public function getSummary(): string;
50 }