1 | <?php |
||
10 | class TitleTag implements RenderableInterface |
||
11 | { |
||
12 | /** |
||
13 | * @var string |
||
14 | */ |
||
15 | protected $content; |
||
16 | |||
17 | /** |
||
18 | * @return string |
||
19 | */ |
||
20 | public function getContent() |
||
24 | |||
25 | /** |
||
26 | * @param string $content |
||
27 | * |
||
28 | * @return $this |
||
29 | */ |
||
30 | public function setContent($content) |
||
36 | |||
37 | /** |
||
38 | * @return string |
||
39 | */ |
||
40 | public function render() |
||
44 | |||
45 | /** |
||
46 | * @return string |
||
47 | */ |
||
48 | public function __toString() |
||
52 | } |
||
53 |