Passed
Push — master ( 171762...8b9759 )
by Mr
05:20
created
src/ServiceProvider.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -45,17 +45,17 @@
 block discarded – undo
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
     }
Please login to merge, or discard this patch.