@@ -26,7 +26,7 @@ discard block |
||
26 | 26 | */ |
27 | 27 | public function register() |
28 | 28 | { |
29 | - $this->app->singleton(HttpClient::class, function () { |
|
29 | + $this->app->singleton(HttpClient::class, function() { |
|
30 | 30 | $config = ['timeout' => 30]; |
31 | 31 | $client = new GuzzleClient($config); |
32 | 32 | $adapter = new GuzzleAdapter($client); |
@@ -34,7 +34,7 @@ discard block |
||
34 | 34 | return $adapter; |
35 | 35 | }); |
36 | 36 | |
37 | - $this->app->singleton(MessageFactory::class, function () { |
|
37 | + $this->app->singleton(MessageFactory::class, function() { |
|
38 | 38 | $factory = new GuzzleMessageFactory(); |
39 | 39 | |
40 | 40 | return $factory; |