Completed
Push — master ( 6aaa22...14d740 )
by Sergey
03:21 queued 34s
created
src/Requests/Request.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@  discard block
 block discarded – undo
7 7
 
8 8
 abstract class Request implements RequestInterface
9 9
 {
10
-    static public $allowedMethod = [];
10
+    static public $allowedMethod = [ ];
11 11
 
12 12
     /**
13 13
      * @var HttpInterface
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
      * @param array $params
51 51
      * @return array|null
52 52
      */
53
-    public function exec($action, $params = [])
53
+    public function exec($action, $params = [ ])
54 54
     {
55 55
         $endPoint = $this->makeEndPoint($action);
56 56
         $requestBody = $this->createRequestBody($params);
Please login to merge, or discard this patch.