@@ -112,7 +112,7 @@ |
||
112 | 112 | private function resolveDetections() |
113 | 113 | { |
114 | 114 | /** @see ResolverDetections */ |
115 | - app()->bind('ResolverDetections', function () { |
|
115 | + app()->bind('ResolverDetections', function() { |
|
116 | 116 | return new ResolverDetections($this->queryBuilderWrapper->getBuilder(), $this->requestFilter->getRequest(), $this->queryFilterCore->getDetectFactory()); |
117 | 117 | }); |
118 | 118 |
@@ -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')) { |
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()); |