@@ -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) |
@@ -59,7 +59,7 @@ discard block |
||
59 | 59 | ) |
60 | 60 | ->and($resolver->addHandler(LoginUserMessage::class, new LoginUserMessageListener())) |
61 | 61 | ->then() |
62 | - ->exception(function () use ($resolver) { |
|
62 | + ->exception(function() use ($resolver) { |
|
63 | 63 | $resolver->resolve(new LogoutUserMessage('[email protected]')); |
64 | 64 | }) |
65 | 65 | ->isInstanceOf(NotFoundException::class) |
@@ -74,7 +74,7 @@ discard block |
||
74 | 74 | ) |
75 | 75 | ) |
76 | 76 | ->then() |
77 | - ->exception(function () use ($resolver) { |
|
77 | + ->exception(function() use ($resolver) { |
|
78 | 78 | $resolver->resolve(new LoginUserMessage('[email protected]')); |
79 | 79 | }) |
80 | 80 | ->isInstanceOf(NotFoundException::class) |
@@ -46,7 +46,7 @@ |
||
46 | 46 | $this |
47 | 47 | ->given($resolver = new ChainResolver([])) |
48 | 48 | ->then() |
49 | - ->exception(function () use ($resolver) { |
|
49 | + ->exception(function() use ($resolver) { |
|
50 | 50 | $resolver->resolve(new LogoutUserMessage('[email protected]')); |
51 | 51 | }) |
52 | 52 | ->isInstanceOf(NotFoundException::class) |