1 | <?php |
||
12 | class Course |
||
13 | { |
||
14 | private $rating; |
||
15 | private $slope; |
||
16 | |||
17 | 4 | public function __construct($rating, $slope) |
|
22 | |||
23 | /** |
||
24 | * @return mixed |
||
25 | */ |
||
26 | 2 | public function getRating() |
|
30 | |||
31 | /** |
||
32 | * @param mixed $rating |
||
33 | */ |
||
34 | 1 | public function setRating($rating) |
|
38 | |||
39 | /** |
||
40 | * @return mixed |
||
41 | */ |
||
42 | 2 | public function getSlope() |
|
46 | |||
47 | /** |
||
48 | * @param mixed $slope |
||
49 | */ |
||
50 | 1 | public function setSlope($slope) |
|
54 | |||
55 | } |