Completed
Push — master ( 5c75ec...5ff604 )
by Peter
02:22
created
src/Http/Client.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@
 block discarded – undo
62 62
      */
63 63
     public function addHeader(array $header)
64 64
     {
65
-        $this->options[ 'headers' ][] = $header;
65
+        $this->options[ 'headers' ][ ] = $header;
66 66
         return $this;
67 67
     }
68 68
 
Please login to merge, or discard this patch.
src/Api/Betting.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
         $this->httpClient = $httpClient ?: new HttpClient;
16 16
     }
17 17
 
18
-    public function listMarketcatalogue($filter = [], $marketProjection = [], $sort = null, $maxResults = 100, $locale = null)
18
+    public function listMarketcatalogue($filter = [ ], $marketProjection = [ ], $sort = null, $maxResults = 100, $locale = null)
19 19
     {
20 20
         return $this->httpClient
21 21
             ->setMethod('post')
Please login to merge, or discard this patch.