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