Passed
Branch master (284f23)
by Antonio Carlos
01:53
created
src/Generators.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@  discard block
 block discarded – undo
11 11
      */
12 12
     protected function generate()
13 13
     {
14
-        if (! is_null($this->fakerString)) {
14
+        if (!is_null($this->fakerString)) {
15 15
             return $this->fakerString;
16 16
         }
17 17
 
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
      */
55 55
     protected function getAlphaGenerator()
56 56
     {
57
-        return function ($size) {
57
+        return function($size) {
58 58
             return random_bytes($size);
59 59
         };
60 60
     }
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
      */
67 67
     protected function getNumericGenerator()
68 68
     {
69
-        return function () {
69
+        return function() {
70 70
             return random_int(0, PHP_INT_MAX);
71 71
         };
72 72
     }
Please login to merge, or discard this patch.