1 | <?php |
||
5 | class SeoPage implements SeoPageInterface |
||
6 | { |
||
7 | /** @var HtmlMetaInterface[] */ |
||
8 | protected $meta = []; |
||
9 | /** @var string */ |
||
10 | protected $title; |
||
11 | /** @var string */ |
||
12 | protected $canonical; |
||
13 | /** @var string[] */ |
||
14 | protected $htmlAttributes = []; |
||
15 | /** @var string[] */ |
||
16 | protected $breadcrumbs = []; |
||
17 | |||
18 | /** @return HtmlMetaInterface[] */ |
||
19 | public function getMeta() |
||
23 | |||
24 | /** @return string */ |
||
25 | 1 | public function getTitle() |
|
26 | { |
||
27 | 1 | return $this->title; |
|
28 | } |
||
29 | |||
30 | /** @return string[] */ |
||
31 | public function getHtmlAttributes() |
||
35 | |||
36 | /** @return string|null */ |
||
37 | public function getCanonicalLink() |
||
41 | |||
42 | /** @return string[] */ |
||
43 | public function getBreadcrumbs() |
||
47 | } |
||
48 |