Completed
Push — master ( e354a4...27024c )
by Vladymyr
02:13
created
src/Configurator/PrivateRequestConfigurator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -124,6 +124,6 @@
 block discarded – undo
124 124
      */
125 125
     private function generateTonce(): int
126 126
     {
127
-        return (int)(microtime(true) * 1000);
127
+        return (int) (microtime(true) * 1000);
128 128
     }
129 129
 }
Please login to merge, or discard this patch.
src/Api/PublicApi.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
      */
30 30
     public function getTickers(string $symbols): array
31 31
     {
32
-        $response = $this->getBaseClient()->get('/tickers/' . strtolower($symbols));
32
+        $response = $this->getBaseClient()->get('/tickers/'.strtolower($symbols));
33 33
 
34 34
         return $this->getTransformer()->transform($response);
35 35
     }
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
     {
44 44
         $query = http_build_query(['market' => strtolower($market)]);
45 45
         echo $query;
46
-            $response = $this->getBaseClient()->get('/depth?' . $query);
46
+            $response = $this->getBaseClient()->get('/depth?'.$query);
47 47
 
48 48
         return $this->getTransformer()->transform($response);
49 49
     }
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
     {
58 58
         $query = http_build_query(['market' => strtolower($market)]);
59 59
         echo $query;
60
-        $response = $this->getBaseClient()->get('/trades?' . $query);
60
+        $response = $this->getBaseClient()->get('/trades?'.$query);
61 61
 
62 62
         return $this->getTransformer()->transform($response);
63 63
     }
Please login to merge, or discard this patch.
src/Api/PrivateApi.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
     public function getOrders(string $market)
85 85
     {
86 86
         $query = http_build_query(['market' => strtolower($market)]);
87
-        $response = $this->getBaseClient()->get('/orders?' . $query);
87
+        $response = $this->getBaseClient()->get('/orders?'.$query);
88 88
 
89 89
         return $this->getTransformer()->transform($response);
90 90
     }
@@ -97,7 +97,7 @@  discard block
 block discarded – undo
97 97
     public function getMyTrades(string $market)
98 98
     {
99 99
         $query = http_build_query(['market' => strtolower($market)]);
100
-        $response = $this->getBaseClient()->get('/trades/my?' . $query);
100
+        $response = $this->getBaseClient()->get('/trades/my?'.$query);
101 101
 
102 102
         return $this->getTransformer()->transform($response);
103 103
     }
Please login to merge, or discard this patch.