Passed
Push — master ( 8b2ffe...39381f )
by Lucas
02:15
created
src/Model/Schema/SchemaFloatAttribute.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
     public function parseContextual($value)
28 28
     {
29 29
         if (is_int($value)) {
30
-            $value = (float) $value;
30
+            $value = (float)$value;
31 31
         }
32 32
 
33 33
         if (!is_null($this->min) && $value < $this->min) {
Please login to merge, or discard this patch.
src/Endpoint/WebhookEndpoint.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@
 block discarded – undo
50 50
      *
51 51
      * @codeCoverageIgnore
52 52
      */
53
-    public function list(?array $filters = []): Response
53
+    public function list(?array $filters = []) : Response
54 54
     {
55 55
         return $this->_GET($filters ?? []);
56 56
     }
Please login to merge, or discard this patch.
src/Endpoint/SellerEndpoint.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.
src/Endpoint/TransactionEndpoint.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
      * @return Response
35 35
      *
36 36
      */
37
-    public function list(?array $filters = []): Response
37
+    public function list(?array $filters = []) : Response
38 38
     {
39 39
         return $this->_GET($filters ?? []);
40 40
     }
Please login to merge, or discard this patch.
src/Endpoint/ChargeEndpoint.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.
src/Endpoint/EstablishmentEndpoint.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@
 block discarded – undo
63 63
      *
64 64
      * @codeCoverageIgnore
65 65
      */
66
-    public function list(?array $filters = []): Response
66
+    public function list(?array $filters = []) : Response
67 67
     {
68 68
         return $this->_GET($filters ?? []);
69 69
     }
Please login to merge, or discard this patch.
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.