@@ -55,7 +55,7 @@ |
||
55 | 55 | $this |
56 | 56 | ->given($resolver = new MethodWithShortObjectNameAndSuffixResolver('Listener', 'Resolver')) |
57 | 57 | ->then() |
58 | - ->exception(function () use ($resolver) { |
|
58 | + ->exception(function() use ($resolver) { |
|
59 | 59 | $resolver->resolve(LoginUserMessage::class); |
60 | 60 | })->isInstanceOf(\Exception::class) |
61 | 61 | ; |
@@ -48,7 +48,7 @@ |
||
48 | 48 | $this |
49 | 49 | ->given($resolver = new ChainResolver([])) |
50 | 50 | ->then() |
51 | - ->exception(function () use ($resolver) { |
|
51 | + ->exception(function() use ($resolver) { |
|
52 | 52 | $resolver->resolve(new LogoutUserMessage('[email protected]')); |
53 | 53 | }) |
54 | 54 | ->isInstanceOf(NotFoundException::class) |