Passed
Push — master ( 594060...cd3b59 )
by Shinji
03:18 queued 01:38
created
src/Inspector/RetryingLoopProvider.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,8 @@  discard block
 block discarded – undo
26 26
     }
27 27
 
28 28
     /** @param class-string<\Throwable>[] $retry_on */
29
-    public function do(
29
+    public function do {
30
+        (
30 31
         callable $try,
31 32
         array $retry_on,
32 33
         int $max_retry,
@@ -35,6 +36,7 @@  discard block
 block discarded – undo
35 36
         // one successful execution is enough
36 37
         $loop_canceller = function () use ($try): bool {
37 38
             $try();
39
+    }
38 40
             return false;
39 41
         };
40 42
 
Please login to merge, or discard this patch.