Completed
Push — master ( d1a78a...0cf24a )
by Guillaume
02:47
created
src/Middleware/Backoff.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@  discard block
 block discarded – undo
19 19
      */
20 20
     public static function decider()
21 21
     {
22
-        return function (
22
+        return function(
23 23
             $retries,
24 24
             Request $request,
25 25
             Response $response = null,
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
      */
54 54
     public static function delay()
55 55
     {
56
-        return function ($numberOfRetries) {
56
+        return function($numberOfRetries) {
57 57
             return 1000 * $numberOfRetries;
58 58
         };
59 59
     }
Please login to merge, or discard this patch.