Completed
Push — master ( 4e4f47...806721 )
by Ivannis Suárez
02:27
created
HandlerMethodName/MethodWithShortObjectNameAndSuffixResolverTests.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@
 block discarded – undo
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
         ;
Please login to merge, or discard this patch.
Units/Middlewares/Handler/Resolver/HandlerMethodName/ChainResolverTests.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@
 block discarded – undo
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)
Please login to merge, or discard this patch.