Completed
Push — master ( ac1523...7953c8 )
by Sergey
02:43
created
src/Contracts/RequestInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,5 +9,5 @@
 block discarded – undo
9 9
      * @param string $uri
10 10
      * @param array $params
11 11
      */
12
-    public function exec($uri, $params = []);
12
+    public function exec($uri, $params = [ ]);
13 13
 }
Please login to merge, or discard this patch.
src/Contracts/HttpInterface.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -9,14 +9,14 @@
 block discarded – undo
9 9
      * @param array $params
10 10
      * @return array
11 11
      */
12
-    public function get($uri, $params = []);
12
+    public function get($uri, $params = [ ]);
13 13
 
14 14
     /**
15 15
      * @param string $uri
16 16
      * @param array $body
17 17
      * @return array
18 18
      */
19
-    public function post($uri, $body = []);
19
+    public function post($uri, $body = [ ]);
20 20
 
21 21
     /**
22 22
      * @param string $url
Please login to merge, or discard this patch.