1 | <?php |
||
20 | trait FloatRateTrait { |
||
21 | |||
22 | /** |
||
23 | * Rate. |
||
24 | * |
||
25 | * @var float |
||
26 | */ |
||
27 | private $rate; |
||
28 | |||
29 | /** |
||
30 | * Get the rate. |
||
31 | * |
||
32 | * @return float Returns the rate. |
||
33 | */ |
||
34 | public function getRate() { |
||
37 | |||
38 | /** |
||
39 | * Set the rate. |
||
40 | * |
||
41 | * @param float $rate The rate. |
||
42 | */ |
||
43 | public function setRate($rate) { |
||
47 | } |
||
48 |