1 | <?php |
||
12 | class HashRand extends AbstractRand |
||
13 | { |
||
14 | /** |
||
15 | * This is 63bit generator because PHP does not support unsigned 64bit int |
||
16 | */ |
||
17 | const INT_MAX = 0x7FFFFFFFFFFFFFFF; |
||
18 | |||
19 | /** |
||
20 | * @inheritdoc |
||
21 | */ |
||
22 | public function randomInt() |
||
30 | |||
31 | /** |
||
32 | * @inheritdoc |
||
33 | */ |
||
34 | protected function init() |
||
38 | } |
||
39 |