@@ -37,7 +37,7 @@ discard block |
||
37 | 37 | private function configurePaths() |
38 | 38 | { |
39 | 39 | $this->publishes([ |
40 | - __DIR__ . '/config/config.php' => config_path('eloquentFilter.php'), |
|
40 | + __DIR__.'/config/config.php' => config_path('eloquentFilter.php'), |
|
41 | 41 | ]); |
42 | 42 | } |
43 | 43 | |
@@ -47,7 +47,7 @@ discard block |
||
47 | 47 | private function mergeConfig() |
48 | 48 | { |
49 | 49 | $this->mergeConfigFrom( |
50 | - __DIR__ . '/config/config.php', |
|
50 | + __DIR__.'/config/config.php', |
|
51 | 51 | 'eloquentFilter' |
52 | 52 | ); |
53 | 53 | } |
@@ -60,7 +60,7 @@ discard block |
||
60 | 60 | if (config('eloquentFilter.enabled') != false) { |
61 | 61 | $this->app->singleton( |
62 | 62 | 'eloquentFilter', |
63 | - function () { |
|
63 | + function() { |
|
64 | 64 | $queryFilterCoreFactory = new QueryFilterCoreFactory(); |
65 | 65 | |
66 | 66 | $request = new RequestFilter($this->app->get('request')->query()); |