Passed
Push — master ( 71f1ac...8b2ffe )
by Lucas
02:10
created
src/Endpoint/SubscriptionPlanEndpoint.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@
 block discarded – undo
57 57
      * @param array|null $filters
58 58
      * @return Response
59 59
      */
60
-    public function list(?array $filters = []): Response
60
+    public function list(?array $filters = []) : Response
61 61
     {
62 62
         return $this->_GET($filters ?? []);
63 63
     }
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
@@ -57,7 +57,7 @@
 block discarded – undo
57 57
      * @param array|null $filters
58 58
      * @return Response
59 59
      */
60
-    public function list(?array $filters = []): Response
60
+    public function list(?array $filters = []) : Response
61 61
     {
62 62
         return $this->_GET($filters ?? []);
63 63
     }
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
@@ -57,7 +57,7 @@
 block discarded – undo
57 57
      * @param array|null $filters
58 58
      * @return Response
59 59
      */
60
-    public function list(?array $filters = []): Response
60
+    public function list(?array $filters = []) : Response
61 61
     {
62 62
         return $this->_GET($filters ?? []);
63 63
     }
Please login to merge, or discard this patch.
src/Endpoint/SellerTransferEndpoint.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@
 block discarded – undo
57 57
      * @param array|null $filters
58 58
      * @return Response
59 59
      */
60
-    public function list(?array $filters = []): Response
60
+    public function list(?array $filters = []) : Response
61 61
     {
62 62
         return $this->_GET($filters ?? []);
63 63
     }
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
@@ -57,7 +57,7 @@
 block discarded – undo
57 57
      * @param array|null $filters
58 58
      * @return Response
59 59
      */
60
-    public function list(?array $filters = []): Response
60
+    public function list(?array $filters = []) : Response
61 61
     {
62 62
         return $this->_GET($filters ?? []);
63 63
     }
Please login to merge, or discard this patch.
src/Endpoint/TransferEndpoint.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@
 block discarded – undo
57 57
      * @param array|null $filters
58 58
      * @return Response
59 59
      */
60
-    public function list(?array $filters = []): Response
60
+    public function list(?array $filters = []) : Response
61 61
     {
62 62
         return $this->_GET($filters ?? []);
63 63
     }
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
@@ -57,7 +57,7 @@
 block discarded – undo
57 57
      * @param array|null $filters
58 58
      * @return Response
59 59
      */
60
-    public function list(?array $filters = []): Response
60
+    public function list(?array $filters = []) : Response
61 61
     {
62 62
         return $this->_GET($filters ?? []);
63 63
     }
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
@@ -57,7 +57,7 @@
 block discarded – undo
57 57
      * @param array|null $filters
58 58
      * @return Response
59 59
      */
60
-    public function list(?array $filters = []): Response
60
+    public function list(?array $filters = []) : Response
61 61
     {
62 62
         return $this->_GET($filters ?? []);
63 63
     }
Please login to merge, or discard this patch.
src/Model/Attendee.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
38 38
     {
39 39
         return new Mutator(
40 40
             null,
41
-            function ($value, $ctx) {
41
+            function($value, $ctx) {
42 42
                 $d = \DateTime::createFromFormat('Y-m-d', $value);
43 43
 
44 44
                 return is_null($value) ||
Please login to merge, or discard this patch.