Passed
Pull Request — master (#3)
by Richard
03:50
created
src/Migrations/SyntaxBuilder.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -85,7 +85,7 @@  discard block
 block discarded – undo
85 85
         }
86 86
 
87 87
         $fields = array_map(
88
-            function ($field) {
88
+            function($field) {
89 89
                 return $this->addArg($field);
90 90
             },
91 91
             $schema
@@ -123,7 +123,7 @@  discard block
 block discarded – undo
123 123
         }
124 124
 
125 125
         $fields = array_map(
126
-            function ($field) {
126
+            function($field) {
127 127
                 return $this->addResolve($field);
128 128
             },
129 129
             $schema
@@ -161,7 +161,7 @@  discard block
 block discarded – undo
161 161
         }
162 162
 
163 163
         $fields = array_map(
164
-            function ($field) {
164
+            function($field) {
165 165
                 return $this->addField($field);
166 166
             },
167 167
             $schema
@@ -206,7 +206,7 @@  discard block
 block discarded – undo
206 206
         }
207 207
 
208 208
         $fields = array_map(
209
-            function ($field) {
209
+            function($field) {
210 210
                 return $this->addData($field);
211 211
             },
212 212
             $schema
Please login to merge, or discard this patch.
src/ArtomatorServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@
 block discarded – undo
36 36
         // Register the service the package provides.
37 37
         $this->app->singleton(
38 38
             'artomator',
39
-            function () {
39
+            function() {
40 40
                 return new Artomator();
41 41
             }
42 42
         );
Please login to merge, or discard this patch.
src/Commands/ArtomatorAllCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -156,7 +156,7 @@
 block discarded – undo
156 156
         }
157 157
 
158 158
         $results = array_map(
159
-            function ($field) {
159
+            function($field) {
160 160
                 return $this->addArg($field);
161 161
             },
162 162
             $results
Please login to merge, or discard this patch.