| 1 | <?php |
||
| 21 | class PageTranslation extends AbstractTranslation implements PageTranslationInterface |
||
| 22 | { |
||
| 23 | /** |
||
| 24 | * @var int |
||
| 25 | */ |
||
| 26 | protected $id; |
||
| 27 | |||
| 28 | /** |
||
| 29 | * @var null|string |
||
| 30 | */ |
||
| 31 | protected $slug; |
||
| 32 | |||
| 33 | /** |
||
| 34 | * @var null|string |
||
| 35 | */ |
||
| 36 | protected $name; |
||
| 37 | |||
| 38 | /** |
||
| 39 | * @var null|string |
||
| 40 | */ |
||
| 41 | protected $content; |
||
| 42 | |||
| 43 | /** |
||
| 44 | * @var null|string |
||
| 45 | */ |
||
| 46 | protected $metaKeywords; |
||
| 47 | |||
| 48 | /** |
||
| 49 | * @var null|string |
||
| 50 | */ |
||
| 51 | protected $metaDescription; |
||
| 52 | |||
| 53 | /** |
||
| 54 | * @var null|string |
||
| 55 | */ |
||
| 56 | protected $link; |
||
| 57 | |||
| 58 | /** |
||
| 59 | * {@inheritdoc} |
||
| 60 | */ |
||
| 61 | public function getId(): int |
||
| 65 | |||
| 66 | /** |
||
| 67 | * {@inheritdoc} |
||
| 68 | */ |
||
| 69 | public function getContent(): ?string |
||
| 73 | |||
| 74 | /** |
||
| 75 | * {@inheritdoc} |
||
| 76 | */ |
||
| 77 | public function setContent(?string $content): void |
||
| 81 | |||
| 82 | /** |
||
| 83 | * {@inheritdoc} |
||
| 84 | */ |
||
| 85 | public function getSlug(): ?string |
||
| 89 | |||
| 90 | /** |
||
| 91 | * {@inheritdoc} |
||
| 92 | */ |
||
| 93 | public function setSlug(?string $slug): void |
||
| 97 | |||
| 98 | /** |
||
| 99 | * {@inheritdoc} |
||
| 100 | */ |
||
| 101 | public function getName(): ?string |
||
| 105 | |||
| 106 | /** |
||
| 107 | * {@inheritdoc} |
||
| 108 | */ |
||
| 109 | public function setName(?string $name): void |
||
| 113 | |||
| 114 | /** |
||
| 115 | * {@inheritdoc} |
||
| 116 | */ |
||
| 117 | public function getMetaKeywords(): ?string |
||
| 121 | |||
| 122 | /** |
||
| 123 | * {@inheritdoc} |
||
| 124 | */ |
||
| 125 | public function setMetaKeywords(?string $metaKeywords): void |
||
| 129 | |||
| 130 | /** |
||
| 131 | * {@inheritdoc} |
||
| 132 | */ |
||
| 133 | public function getMetaDescription(): ?string |
||
| 137 | |||
| 138 | /** |
||
| 139 | * {@inheritdoc} |
||
| 140 | */ |
||
| 141 | public function setMetaDescription(?string $metaDescription): void |
||
| 145 | } |
||
| 146 |