| 1 | <?php | ||
| 20 | class FrequentlyAskedQuestionTranslation extends AbstractTranslation implements FrequentlyAskedQuestionTranslationInterface | ||
| 21 | { | ||
| 22 | /** | ||
| 23 | * @var int | ||
| 24 | */ | ||
| 25 | protected $id; | ||
| 26 | |||
| 27 | /** | ||
| 28 | * @var null|string | ||
| 29 | */ | ||
| 30 | protected $question; | ||
| 31 | |||
| 32 | /** | ||
| 33 | * @var null|string | ||
| 34 | */ | ||
| 35 | protected $answer; | ||
| 36 | |||
| 37 | /** | ||
| 38 |      * {@inheritdoc} | ||
| 39 | */ | ||
| 40 | public function getId(): ?int | ||
| 44 | |||
| 45 | /** | ||
| 46 |      * {@inheritdoc} | ||
| 47 | */ | ||
| 48 | public function getQuestion(): ?string | ||
| 52 | |||
| 53 | /** | ||
| 54 |      * {@inheritdoc} | ||
| 55 | */ | ||
| 56 | public function setQuestion(string $question): void | ||
| 60 | |||
| 61 | /** | ||
| 62 |      * {@inheritdoc} | ||
| 63 | */ | ||
| 64 | public function getAnswer(): ?string | ||
| 68 | |||
| 69 | /** | ||
| 70 |      * {@inheritdoc} | ||
| 71 | */ | ||
| 72 | public function setAnswer(string $answer): void | ||
| 76 | } | ||
| 77 |