@@ -33,7 +33,7 @@ |
||
33 | 33 | */ |
34 | 34 | public function __construct($max = PHP_INT_MAX, $min = 1) |
35 | 35 | { |
36 | - if((int)$min < 1) { |
|
36 | + if ((int)$min < 1) { |
|
37 | 37 | throw new \OutOfRangeException('The min number must be a positive integer.'); |
38 | 38 | } |
39 | 39 |
@@ -35,7 +35,7 @@ |
||
35 | 35 | */ |
36 | 36 | public function __construct($bytes = PHP_INT_SIZE, $forceStrong = true) |
37 | 37 | { |
38 | - if((int)$bytes < 1) { |
|
38 | + if ((int)$bytes < 1) { |
|
39 | 39 | throw new \OutOfRangeException('The length of the desired string of bytes. Must be a positive integer.'); |
40 | 40 | } |
41 | 41 |