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