Test Failed
Branch master (f1398a)
by Dominik
03:26
created
Category
src/MockByCallsTrait.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
         $callIndex = 0;
50 50
 
51 51
         $mock->expects(self::any())->method(self::anything())->willReturnCallback(
52
-            function () use ($class, $callCount, &$callIndex) {
52
+            function() use ($class, $callCount, &$callIndex) {
53 53
                 if ($callIndex === $callCount) {
54 54
                     self::fail(sprintf('Additional call at index %d on class "%s"!', $callIndex, $class));
55 55
                 }
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
         Call $call,
76 76
         MockObject $mock
77 77
     ): \Closure {
78
-        return function () use ($class, $i, $call, $mock) {
78
+        return function() use ($class, $i, $call, $mock) {
79 79
             if ($call->hasWith()) {
80 80
                 $this->compareArguments($class, $call->getMethod(), $i, $call->getWith(), func_get_args());
81 81
             }
Please login to merge, or discard this patch.