Completed
Push — master ( e919e2...c9abe3 )
by Andreas
16s
created
src/Reader/ApiCfpReader.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
         $this->client = $client;
61 61
     }
62 62
 
63
-    public function getCfpsEndingWithinInterval(DateInterval $interval, DateTimeInterface|null $date = null): CfpList
63
+    public function getCfpsEndingWithinInterval(DateInterval $interval, DateTimeInterface | null $date = null): CfpList
64 64
     {
65 65
         if (null === $date) {
66 66
             $date = new DateTimeImmutable();
@@ -89,7 +89,7 @@  discard block
 block discarded – undo
89 89
             return $list;
90 90
         }
91 91
 
92
-        if (! $items) {
92
+        if (!$items) {
93 93
             return $list;
94 94
         }
95 95
 
@@ -107,7 +107,7 @@  discard block
 block discarded – undo
107 107
             $cfp->longitude      = $item['longitude'];
108 108
             $cfp->iconUri        = $item['iconUri'];
109 109
             $cfp->uri            = $item['uri'];
110
-            $cfp->tags           = array_filter($item['tags'], function ($item) {
110
+            $cfp->tags           = array_filter($item['tags'], function($item) {
111 111
                 return (bool) $item;
112 112
             });
113 113
             $cfp->timezone       = $item['timezone'];
Please login to merge, or discard this patch.