Passed
Push — master ( 4a33be...a93e57 )
by Antonio Carlos
03:54 queued 02:08
created
src/Random.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
      */
73 73
     private function getAlphaGenerator()
74 74
     {
75
-        return function ($size) {
75
+        return function($size) {
76 76
             return str_replace(['/', '+', '='], '', base64_encode(random_bytes($size)));
77 77
         };
78 78
     }
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
      */
85 85
     private function getNumericGenerator()
86 86
     {
87
-        return function () {
87
+        return function() {
88 88
             return random_int(0, PHP_INT_MAX);
89 89
         };
90 90
     }
Please login to merge, or discard this patch.