Completed
Branch master (9c0207)
by Konstantin
05:16
created
Category
src/Client.php 1 patch
Spacing   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -52,8 +52,7 @@
 block discarded – undo
52 52
      * @param ResponseHandlerInterface|null $responseHandler
53 53
      * @param CacheInterface|null $cache
54 54
      */
55
-    public function __construct
56
-    (
55
+    public function __construct(
57 56
         Connection                  $connection,
58 57
         ClientInterface             $httpClient = null,
59 58
         ResponseHandlerInterface    $responseHandler = null,
Please login to merge, or discard this patch.
src/request/ConnectionRoute.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
     /**
30 30
      * @var array
31 31
      */
32
-    protected $required = ['userName','userPassword'];
32
+    protected $required = ['userName', 'userPassword'];
33 33
 
34 34
     /**
35 35
      * ConnectionRequestContent constructor.
Please login to merge, or discard this patch.
src/request/ReadOffersRoute.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
     /**
30 30
      * @var array
31 31
      */
32
-    protected $filters = ['merchantManagerId','categoryId','mainFilterItem','dateInsertedFrom','dateInsertedTo','active','types','fields','offset','limit','orderByField','orderByMethod'];
32
+    protected $filters = ['merchantManagerId', 'categoryId', 'mainFilterItem', 'dateInsertedFrom', 'dateInsertedTo', 'active', 'types', 'fields', 'offset', 'limit', 'orderByField', 'orderByMethod'];
33 33
 
34 34
     /**
35 35
      * OffersRequestContent constructor.
Please login to merge, or discard this patch.
src/response/ArrayResponseHandler.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -66,7 +66,7 @@
 block discarded – undo
66 66
     protected function createArray()
67 67
     {
68 68
         $jsonDecode = $this->jsonDecode();
69
-        $this->decodedArray = is_array($jsonDecode) ?  $jsonDecode : [];
69
+        $this->decodedArray = is_array($jsonDecode) ? $jsonDecode : [];
70 70
     }
71 71
 
72 72
     /**
Please login to merge, or discard this patch.