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 | 3 | public function getMeta() |
|
20 | { |
||
21 | 3 | return $this->meta; |
|
22 | } |
||
23 | |||
24 | /** @return string */ |
||
25 | 5 | public function getTitle() |
|
29 | |||
30 | /** @return string[] */ |
||
31 | 2 | public function getHtmlAttributes() |
|
35 | |||
36 | /** @return string|null */ |
||
37 | 3 | public function getCanonicalLink() |
|
41 | |||
42 | /** @return string[] */ |
||
43 | 2 | public function getBreadcrumbs() |
|
47 | } |
||
48 |