@@ -49,7 +49,7 @@ discard block |
||
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 |
||
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 | } |