Passed
Push — master ( 9bb9ac...4e9219 )
by belamov
02:22 queued 11s
created
src/PostgresRangeServiceProvider.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@  discard block
 block discarded – undo
16 16
 
17 17
     protected function setCustomResolverForPgsql(): void
18 18
     {
19
-        Connection::resolverFor('pgsql', function ($connection, $database, $prefix, $config) {
19
+        Connection::resolverFor('pgsql', function($connection, $database, $prefix, $config) {
20 20
             return new PostgresConnection($connection, $database, $prefix, $config);
21 21
         });
22 22
     }
@@ -35,11 +35,11 @@  discard block
 block discarded – undo
35 35
         }
36 36
 
37 37
         Collection::make(glob(__DIR__.'/Macros/*.php'))->mapWithKeys(
38
-            static function ($path) {
38
+            static function($path) {
39 39
                 return [$path => pathinfo($path, PATHINFO_FILENAME)];
40 40
             }
41 41
         )->each(
42
-            static function ($macro, $path) {
42
+            static function($macro, $path) {
43 43
                 require_once $path;
44 44
             }
45 45
         );
Please login to merge, or discard this patch.