Passed
Push — master ( 8b2ffe...39381f )
by Lucas
02:15
created
src/Endpoint/SubscriptionPlanEndpoint.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -74,7 +74,7 @@
 block discarded – undo
74 74
      *
75 75
      * @codeCoverageIgnore
76 76
      */
77
-    public function list(?array $filters = []): Response
77
+    public function list(?array $filters = []) : Response
78 78
     {
79 79
         return $this->_GET($filters ?? []);
80 80
     }
Please login to merge, or discard this patch.
src/Endpoint/CustomerEndpoint.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -74,7 +74,7 @@
 block discarded – undo
74 74
      *
75 75
      * @codeCoverageIgnore
76 76
      */
77
-    public function list(?array $filters = []): Response
77
+    public function list(?array $filters = []) : Response
78 78
     {
79 79
         return $this->_GET($filters ?? []);
80 80
     }
Please login to merge, or discard this patch.
src/Endpoint/EstablishmentTransactionEndpoint.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
      *
25 25
      * @codeCoverageIgnore
26 26
      */
27
-    public function list(?array $filters = []): Response
27
+    public function list(?array $filters = []) : Response
28 28
     {
29 29
         return $this->_GET($filters, [], '/transactions');
30 30
     }
Please login to merge, or discard this patch.
src/Endpoint/SubscriptionEndpoint.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -61,7 +61,7 @@
 block discarded – undo
61 61
      *
62 62
      * @codeCoverageIgnore
63 63
      */
64
-    public function list(?array $filters = []): Response
64
+    public function list(?array $filters = []) : Response
65 65
     {
66 66
         return $this->_GET($filters ?? []);
67 67
     }
Please login to merge, or discard this patch.