1 | <?php |
||
17 | final class RandomFloatVariable extends FloatVariable |
||
18 | { |
||
19 | /** |
||
20 | * Initializes a new instance of this class. |
||
21 | * |
||
22 | * @param float $min The minimum value. |
||
23 | * @param float $max The maximum value. |
||
24 | * @param float $decimals The amount of decimals to round to. |
||
25 | */ |
||
26 | public function __construct($min = 0.0, $max = 1.0, $decimals = 0) |
||
35 | } |
||
36 |