Test Failed
Push — master ( 9f1d8c...d686dc )
by DeGracia
01:31
created
tests/CircuitBreakerTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@  discard block
 block discarded – undo
22 22
             ->addBreaker($firstBreaker)
23 23
             ->addBreaker($secondBreaker)
24 24
             ->addBreaker($thirdBreaker)
25
-            ->closure(function(){
25
+            ->closure(function() {
26 26
                 throw new Exception();
27 27
             });
28 28
 
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
 
43 43
         $results = (new CircuitBreaker())
44 44
             ->addBreaker($firstBreaker)
45
-            ->closure(function(){
45
+            ->closure(function() {
46 46
                 return;
47 47
             });
48 48
 
Please login to merge, or discard this patch.