Completed
Push — master ( 67107a...4cfe5c )
by Vladymyr
02:45
created
src/Clients/BittrexClient.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 /**
4 4
  * @link https://github.com/codenix-sv/bittrex-api
5 5
  * @copyright Copyright (c) 2017 codenix-sv
@@ -165,8 +165,8 @@  discard block
 block discarded – undo
165 165
     {
166 166
         $parameters = [];
167 167
         $parameters['market'] = $market;
168
-        $parameters['quantity'] = (string)$quantity;
169
-        $parameters['rate'] = (string)$rate;
168
+        $parameters['quantity'] = (string) $quantity;
169
+        $parameters['rate'] = (string) $rate;
170 170
 
171 171
         $request = $this->privateRequestManager->createGetRequest('/market/buylimit', $parameters);
172 172
 
@@ -185,8 +185,8 @@  discard block
 block discarded – undo
185 185
     {
186 186
         $parameters = [];
187 187
         $parameters['market'] = $market;
188
-        $parameters['quantity'] = (string)$quantity;
189
-        $parameters['rate'] = (string)$rate;
188
+        $parameters['quantity'] = (string) $quantity;
189
+        $parameters['rate'] = (string) $rate;
190 190
 
191 191
         $request = $this->privateRequestManager->createGetRequest('/market/selllimit', $parameters);
192 192
 
@@ -292,7 +292,7 @@  discard block
 block discarded – undo
292 292
     {
293 293
         $parameters = [];
294 294
         $parameters['currency'] = $currency;
295
-        $parameters['quantity'] = (string)$quantity;
295
+        $parameters['quantity'] = (string) $quantity;
296 296
         $parameters['address'] = $address;
297 297
 
298 298
         if (!is_null($paymentid)) {
Please login to merge, or discard this patch.