1 | <?php |
||
20 | trait FloatScoreTrait { |
||
21 | |||
22 | /** |
||
23 | * Score. |
||
24 | * |
||
25 | * @var string |
||
26 | */ |
||
27 | private $score; |
||
28 | |||
29 | /** |
||
30 | * Get the score. |
||
31 | * |
||
32 | * @return string Returns the score. |
||
33 | */ |
||
34 | public function getScore() { |
||
37 | |||
38 | /** |
||
39 | * Set the score. |
||
40 | * |
||
41 | * @param string $score The score. |
||
42 | */ |
||
43 | public function setScore($score) { |
||
47 | } |