@@ -45,17 +45,17 @@ |
||
45 | 45 | { |
46 | 46 | $app = $this->app; |
47 | 47 | |
48 | - $app->singleton('manticoresearch.factory', static function () { |
|
48 | + $app->singleton('manticoresearch.factory', static function() { |
|
49 | 49 | return new Factory(); |
50 | 50 | }); |
51 | 51 | |
52 | - $app->singleton('manticoresearch', static function (Container $app) { |
|
52 | + $app->singleton('manticoresearch', static function(Container $app) { |
|
53 | 53 | return new Manager($app, $app['manticoresearch.factory']); |
54 | 54 | }); |
55 | 55 | |
56 | 56 | $app->alias('manticoresearch', Manager::class); |
57 | 57 | |
58 | - $app->singleton(Client::class, static function (Container $app) { |
|
58 | + $app->singleton(Client::class, static function(Container $app) { |
|
59 | 59 | return $app->make('manticoresearch')->connection(); |
60 | 60 | }); |
61 | 61 | } |