Passed
Push — master ( 818dbb...bb4a5a )
by Jhao
02:56
created
src/LaravelServiceProvider.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
 
28 28
     public function register()
29 29
     {
30
-        $this->app->singleton(SingleAccessClient::class, function (Container $app) {
30
+        $this->app->singleton(SingleAccessClient::class, function(Container $app) {
31 31
             $config = $app['config']['services.russianpost.tracking'];
32 32
 
33 33
             return $this->setLoggerToClient(
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
             );
36 36
         });
37 37
 
38
-        $this->app->singleton(PacketAccessClient::class, function (Container $app) {
38
+        $this->app->singleton(PacketAccessClient::class, function(Container $app) {
39 39
             $config = $app['config']['services.russianpost.tracking'];
40 40
 
41 41
             return $this->setLoggerToClient(
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
             );
44 44
         });
45 45
 
46
-        $this->app->singleton(DispatchingClient::class, function (Container $app) {
46
+        $this->app->singleton(DispatchingClient::class, function(Container $app) {
47 47
             $config = $app['config']['services.russianpost.dispatching'];
48 48
 
49 49
             $client = new DispatchingClient(
Please login to merge, or discard this patch.