Skip to content

Commit 8d429db

Browse files
committed
Upgrade coverage
1 parent 83c2b7a commit 8d429db

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/Resolver/CommandHandlerResolver.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,12 +54,13 @@ public function resolve(Command $command): CommandHandler
5454
assert($instance instanceof CommandHandler, 'Handler should be an instance of CommandHandler');
5555
return $instance;
5656
}
57-
57+
// @codeCoverageIgnoreStart
5858
throw new HandlerNotFoundException(sprintf(
5959
'No command handler instance for %s found in container for %s',
6060
$handler,
6161
get_class($command)
6262
));
63+
// @codeCoverageIgnoreEnd
6364
}
6465

6566
/**

0 commit comments

Comments
 (0)