@@ -82,7 +82,7 @@ |
||
82 | 82 | * @param integer $min |
83 | 83 | * @param integer $max |
84 | 84 | */ |
85 | - protected function rnd_fl(int $min = 0, int $max = null): float |
|
85 | + protected function rnd_fl(int $min = 0, int $max = null): float |
|
86 | 86 | { |
87 | 87 | return (float)rand($min, $max) / (float)getrandmax(); |
88 | 88 | } |
@@ -84,7 +84,7 @@ |
||
84 | 84 | */ |
85 | 85 | protected function rnd_fl(int $min = 0, int $max = null): float |
86 | 86 | { |
87 | - return (float)rand($min, $max) / (float)getrandmax(); |
|
87 | + return (float) rand($min, $max) / (float) getrandmax(); |
|
88 | 88 | } |
89 | 89 | |
90 | 90 | /** |