Passed
Pull Request — master (#7)
by Lucas
11:51
created
src/Endpoint/ReceivableEndpoint.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
      * @param array|null $filters
21 21
      * @return Response
22 22
      */
23
-    public function list(?array $filters = []): Response
23
+    public function list(?array $filters = []) : Response
24 24
     {
25 25
         return $this->_GET($filters ?? [], [], '/upcoming');
26 26
     }
Please login to merge, or discard this patch.
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.