1 | <?php |
||
7 | class Review extends Model |
||
8 | { |
||
9 | protected $url = null; |
||
10 | |||
11 | protected $title = null; |
||
12 | |||
13 | protected $favIcon = null; |
||
14 | |||
15 | /** |
||
16 | * Retrieve the url property |
||
17 | * |
||
18 | * @return string|null |
||
19 | */ |
||
20 | 1 | public function getUrl() |
|
24 | |||
25 | /** |
||
26 | * Retrieve the title property |
||
27 | * |
||
28 | * @return string|null |
||
29 | */ |
||
30 | 1 | public function getTitle() |
|
34 | |||
35 | /** |
||
36 | * Retrieve the favIcon property |
||
37 | * |
||
38 | * @return string|null |
||
39 | */ |
||
40 | 1 | public function getFavIcon() |
|
44 | } |
||
45 |