Completed
Push — master ( d21b1b...22592d )
by Daniele
02:26 queued 01:11
created
src/Betfair/BettingApi/MarketBook/MarketBook.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -96,6 +96,9 @@
 block discarded – undo
96 96
         );
97 97
     }
98 98
 
99
+    /**
100
+     * @param double[] $marketIds
101
+     */
99 102
     public function withMarketIds($marketIds)
100 103
     {
101 104
         $this->marketIds = $marketIds;
Please login to merge, or discard this patch.
src/Betfair/Adapter/ArrayRpcAdapter.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -16,11 +16,11 @@
 block discarded – undo
16 16
         $data = json_decode($response, true);
17 17
         
18 18
         if (isset($data['result'])){
19
-        	return $data['result'];
19
+            return $data['result'];
20 20
         }
21 21
         
22 22
         if (isset($data['error'])){
23
-        	return $data['error'];
23
+            return $data['error'];
24 24
         }
25 25
     }
26 26
 }
Please login to merge, or discard this patch.