| 1 | <?php |
||
| 17 | class TemplateConfiguration |
||
| 18 | { |
||
| 19 | /** @var string Template title name */ |
||
| 20 | private $title; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @param array $defaults Default settings |
||
| 24 | */ |
||
| 25 | public function __construct(array $defaults = array()) |
||
| 29 | |||
| 30 | /** |
||
| 31 | * @param string $title |
||
| 32 | * @return self |
||
| 33 | */ |
||
| 34 | public function setTitle($title) |
||
| 39 | |||
| 40 | /** |
||
| 41 | * @return string |
||
| 42 | */ |
||
| 43 | public function getTitle() |
||
| 47 | } |