Completed
Push — master ( 701ec0...f70908 )
by Dan Michael O.
02:11
created
app/Providers/HttpClientProvider.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -26,10 +26,10 @@  discard block
 block discarded – undo
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
 block discarded – undo
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;
Please login to merge, or discard this patch.