Passed
Pull Request — master (#7)
by Lucas
02:44
created
src/Endpoint/TokenEndpoint.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
39 39
         return $this->_GET(['token' => $token]);
40 40
     }
41 41
 
42
-    public function list(?array $filters = []): Response
42
+    public function list(?array $filters = []) : Response
43 43
     {
44 44
         return $this->_GET($filters ?? []);
45 45
     }
Please login to merge, or discard this patch.
src/Endpoint/EstablishmentDisputeEndpoint.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
      * @param array|null $filters
22 22
      * @return Response
23 23
      */
24
-    public function list(string $establishment_id, ?array $filters = []): Response
24
+    public function list(string $establishment_id, ?array $filters = []) : Response
25 25
     {
26 26
         return $this->_GET($filters, [], "/$establishment_id/transactions/disputes");
27 27
     }
Please login to merge, or discard this patch.