Completed
Push — master ( db8df2...9159fd )
by Oliver
13:47
created
src/Random/PhpGenerator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
src/Random/OpenSslGenerator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.