1 | <?php |
||
8 | class StaticContent extends BaseStaticContent implements ResourceInterface |
||
9 | { |
||
10 | |||
11 | /** |
||
12 | * @var string |
||
13 | */ |
||
14 | private $metaKeywords; |
||
15 | |||
16 | /** |
||
17 | * @var string |
||
18 | */ |
||
19 | private $metaDescription; |
||
20 | |||
21 | /** |
||
22 | * @return string |
||
23 | */ |
||
24 | public function getMetaKeywords() |
||
28 | |||
29 | /** |
||
30 | * @param string $metaKeywords |
||
31 | */ |
||
32 | public function setMetaKeywords($metaKeywords) |
||
36 | |||
37 | /** |
||
38 | * @return string |
||
39 | */ |
||
40 | public function getMetaDescription() |
||
44 | |||
45 | /** |
||
46 | * @param string $metaDescription |
||
47 | */ |
||
48 | public function setMetaDescription($metaDescription) |
||
52 | } |
||
53 |