Error fix

This commit is contained in:
Chris 2024-03-01 18:32:21 +01:00
parent 3ea23d6533
commit 4cfb66756f
1 changed files with 2 additions and 2 deletions

View File

@ -143,8 +143,8 @@ class CommandBusClient implements CommandBusInterface
public function execute(string $command, array $context): PromiseInterface
{
if (!$this->connection) {
return new Promise(function (callable $resolve) {
$resolve(new \RuntimeException("Not connected to command bus."));
return new Promise(function (callable $resolve, callable $canceller) {
$canceller("Not connected to command bus.");
});
}