-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathReviewContentModel.php
More file actions
58 lines (50 loc) · 986 Bytes
/
ReviewContentModel.php
File metadata and controls
58 lines (50 loc) · 986 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<?php
declare(strict_types=1);
namespace KingsCode\KlantenVertellen\Models\Reviews;
use KingsCode\KlantenVertellen\Models\Model;
class ReviewContentModel extends Model
{
/**
* @deprecated
* @return string
*/
public function getAnswerToQuestion(): string
{
return $this->answerToQuestion;
}
/**
* @return string
*/
public function getRating(): string
{
return $this->rating;
}
/**
* @return string
*/
public function getQuestionGroup(): string
{
return $this->questionGroup;
}
/**
* @return string
*/
public function getQuestionType(): string
{
return $this->questionType;
}
/**
* @return string
*/
public function getOrder(): int
{
return $this->order;
}
/**
* @return string
*/
public function getQuestionTranslation(): string
{
return $this->questionTranslation;
}
}