Completed
Push — master ( 6afef5...701ec0 )
by Dan Michael O.
16:21 queued 14:10
created
app/Providers/HttpClientProvider.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@  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 = ['timeout' => 30];
31 31
             $client = new GuzzleClient($config);
32 32
             $adapter = new GuzzleAdapter($client);
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
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;
Please login to merge, or discard this patch.