@@ -26,10 +26,10 @@ 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 = [ |
| 31 | 31 | 'timeout' => 30, |
| 32 | - 'verify' => false, // we need to fetch covers from at least one server with invalid ssl setup |
|
| 32 | + 'verify' => false, // we need to fetch covers from at least one server with invalid ssl setup |
|
| 33 | 33 | ]; |
| 34 | 34 | $client = new GuzzleClient($config); |
| 35 | 35 | $adapter = new GuzzleAdapter($client); |
@@ -37,7 +37,7 @@ discard block |
||
| 37 | 37 | return $adapter; |
| 38 | 38 | }); |
| 39 | 39 | |
| 40 | - $this->app->singleton(MessageFactory::class, function () { |
|
| 40 | + $this->app->singleton(MessageFactory::class, function() { |
|
| 41 | 41 | $factory = new GuzzleMessageFactory(); |
| 42 | 42 | |
| 43 | 43 | return $factory; |