1 | <?php |
||
11 | class Review extends CreativeWork |
||
12 | { |
||
13 | public function typeDefintion() |
||
17 | |||
18 | private $_itemRevieved; |
||
19 | |||
20 | /** |
||
21 | * Set Item Reviewed |
||
22 | * |
||
23 | * @param Thing $itemReviewed |
||
24 | * @return static |
||
25 | */ |
||
26 | public function setItemReviewed(Thing $itemReviewed) |
||
31 | |||
32 | /** |
||
33 | * Get Item Reviewed |
||
34 | * |
||
35 | * @return string |
||
36 | */ |
||
37 | public function getItemReviewed() |
||
41 | |||
42 | private $_reviewAspect; |
||
43 | |||
44 | /** |
||
45 | * Set review rating |
||
46 | * |
||
47 | * @param string $reviewAspect |
||
48 | * @return static |
||
49 | */ |
||
50 | public function setReviewAspect($reviewAspect) |
||
55 | |||
56 | /** |
||
57 | * Get review aspect |
||
58 | * |
||
59 | * @return string |
||
60 | */ |
||
61 | public function getReviewAspect() |
||
65 | |||
66 | private $_reviewBody; |
||
67 | |||
68 | /** |
||
69 | * Set review body |
||
70 | * |
||
71 | * @param string $reviewBody |
||
72 | * @return static |
||
73 | */ |
||
74 | public function setReviewBody($reviewBody) |
||
79 | |||
80 | /** |
||
81 | * Get review body |
||
82 | * |
||
83 | * @return string |
||
84 | */ |
||
85 | public function getReviewBody() |
||
89 | |||
90 | private $_reviewRating; |
||
91 | |||
92 | /** |
||
93 | * Set review rating |
||
94 | * |
||
95 | * @param Rating $reviewRating |
||
96 | * @return static |
||
97 | */ |
||
98 | public function setReviewRating(Rating $reviewRating) |
||
103 | |||
104 | /** |
||
105 | * Get Review Rating |
||
106 | * |
||
107 | * @return Rating |
||
108 | */ |
||
109 | public function getReviewRating() |
||
113 | } |