@@ -152,13 +152,13 @@ |
||
152 | 152 | // Handle when no transformer is present |
153 | 153 | if (empty($transformer)) { |
154 | 154 | // No transformation |
155 | - return (array) $data; |
|
155 | + return (array)$data; |
|
156 | 156 | } |
157 | 157 | |
158 | 158 | // Handle when transformer is a callable |
159 | 159 | if (\is_callable($transformer)) { |
160 | 160 | // Simply run callable on the data and return the result |
161 | - return (array) $transformer($data); |
|
161 | + return (array)$transformer($data); |
|
162 | 162 | } |
163 | 163 | |
164 | 164 | // Ensure we're working with a real transformer from this point forward. |