Conditions | 4 |
Paths | 3 |
Total Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
7 | public function validateSamplingSize(int $size) |
||
8 | { |
||
9 | if ($size < 8) { |
||
10 | throw new \InvalidArgumentException("Sampling size must be greater or equal to 8"); |
||
11 | } |
||
12 | |||
13 | if ($size ** 2 > PHP_INT_SIZE * 8 && ! function_exists('gmp_init')) { |
||
14 | throw new \InvalidArgumentException("Sampling size too large: reduce it or install PHP-GMP extension"); |
||
15 | } |
||
16 | } |
||
17 | } |
||
18 |