1 | <?php |
||
7 | class Rating extends Model |
||
8 | { |
||
9 | protected $value = null; |
||
10 | |||
11 | protected $count = null; |
||
12 | |||
13 | /** |
||
14 | * Retrieve the value property |
||
15 | * |
||
16 | * @return float|null |
||
17 | */ |
||
18 | 2 | public function getValue() |
|
22 | |||
23 | /** |
||
24 | * Retrieve the count property |
||
25 | * |
||
26 | * @return float|null |
||
27 | */ |
||
28 | 2 | public function getCount() |
|
32 | } |
||
33 |