Passed
Push — master ( 5a73a2...ff7e54 )
by Mr
12:55 queued 06:29
created
src/ServiceProvider.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -43,17 +43,17 @@
 block discarded – undo
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
     }
Please login to merge, or discard this patch.