Passed
Push — master ( 983e5f...18069b )
by Jasper
03:15
created
src/Links.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -118,7 +118,7 @@  discard block
 block discarded – undo
118 118
     public function toArray()
119 119
     {
120 120
         return array_map(
121
-            static function (?Link $link) {
121
+            static function(?Link $link) {
122 122
                 return $link ? $link->toArray() : null;
123 123
             },
124 124
             $this->links
@@ -145,6 +145,6 @@  discard block
 block discarded – undo
145 145
     #[\ReturnTypeWillChange]
146 146
     public function jsonSerialize()
147 147
     {
148
-        return (object) $this->toArray();
148
+        return (object)$this->toArray();
149 149
     }
150 150
 }
Please login to merge, or discard this patch.
src/Jsonapi.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -76,6 +76,6 @@
 block discarded – undo
76 76
     #[\ReturnTypeWillChange]
77 77
     public function jsonSerialize()
78 78
     {
79
-        return (object) $this->toArray();
79
+        return (object)$this->toArray();
80 80
     }
81 81
 }
Please login to merge, or discard this patch.
src/Meta.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -140,6 +140,6 @@
 block discarded – undo
140 140
     #[\ReturnTypeWillChange]
141 141
     public function jsonSerialize()
142 142
     {
143
-        return (object) $this->toArray();
143
+        return (object)$this->toArray();
144 144
     }
145 145
 }
Please login to merge, or discard this patch.