Completed
Push — master ( 7bdb51...05c144 )
by Russell
43s queued 12s
created
src/Log/SentryLogger.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -237,7 +237,7 @@  discard block
 block discarded – undo
237 237
         ];
238 238
 
239 239
         // If we have nothing to show, then show a meaningful default
240
-        $filtered = array_filter($data, function ($item): bool {
240
+        $filtered = array_filter($data, function($item): bool {
241 241
             return $item == self::SLW_NOOP;
242 242
         });
243 243
 
@@ -337,7 +337,7 @@  discard block
 block discarded – undo
337 337
             'PhpTek\\Sentry\\Logger\\SentryLogger::backtrace',
338 338
         ]);
339 339
 
340
-        return array_map(function ($item) {
340
+        return array_map(function($item) {
341 341
             return new Frame(
342 342
                 $item['function'] ?? self::DEFAULT_FRAME_VAL,
343 343
                 $item['file'] ?? self::DEFAULT_FRAME_VAL,
Please login to merge, or discard this patch.