@@ -16,7 +16,7 @@ discard block |
||
| 16 | 16 | |
| 17 | 17 | protected function setCustomResolverForPgsql(): void |
| 18 | 18 | { |
| 19 | - Connection::resolverFor('pgsql', static function ($connection, $database, $prefix, $config) { |
|
| 19 | + Connection::resolverFor('pgsql', static function($connection, $database, $prefix, $config) { |
|
| 20 | 20 | return new PostgresConnection($connection, $database, $prefix, $config); |
| 21 | 21 | }); |
| 22 | 22 | } |
@@ -33,11 +33,11 @@ discard block |
||
| 33 | 33 | } |
| 34 | 34 | |
| 35 | 35 | Collection::make(glob(__DIR__.'/Macros/*.php'))->mapWithKeys( |
| 36 | - static function ($path) { |
|
| 36 | + static function($path) { |
|
| 37 | 37 | return [$path => pathinfo($path, PATHINFO_FILENAME)]; |
| 38 | 38 | } |
| 39 | 39 | )->each( |
| 40 | - static function ($macro, $path) { |
|
| 40 | + static function($macro, $path) { |
|
| 41 | 41 | require_once $path; |
| 42 | 42 | } |
| 43 | 43 | ); |