Skip to content

Commit 65d7de0

Browse files
committed
fix tests
1 parent 645200f commit 65d7de0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pkg/enqueue/Client/Driver/StompManagementClient.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,12 @@ public static function create(string $vhost = '/', string $host = 'localhost', i
2727
return new static(new Client(null, 'http://'.$host.':'.$port, $login, $password), $vhost);
2828
}
2929

30-
public function declareQueue(string $name, array $options): array
30+
public function declareQueue(string $name, array $options)
3131
{
3232
return $this->client->queues()->create($this->vhost, $name, $options);
3333
}
3434

35-
public function declareExchange(string $name, array $options): array
35+
public function declareExchange(string $name, array $options)
3636
{
3737
return $this->client->exchanges()->create($this->vhost, $name, $options);
3838
}

0 commit comments

Comments
 (0)