Skip to content

Commit

Permalink
Merge 97a1647 into e8dab30
Browse files Browse the repository at this point in the history
  • Loading branch information
o5 committed Jan 11, 2019
2 parents e8dab30 + 97a1647 commit 2083b83
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"nette/di": "~2.4@dev",
"nette/utils": "~2.4@dev",

"php-amqplib/php-amqplib": "~2.6.2"
"php-amqplib/php-amqplib": "~2.8.1"
},
"require-dev": {
"nette/application": "~2.4@dev",
Expand Down
4 changes: 2 additions & 2 deletions tests/KdybyTests/RabbitMq/mocks.php
Original file line number Diff line number Diff line change
Expand Up @@ -103,11 +103,11 @@ public function exchange_bind(



public function exchange_unbind($destination, $source, $routing_key = "", $arguments = NULL, $ticket = NULL)
public function exchange_unbind($destination, $source, $routing_key = "", $nowait = FALSE, $arguments = NULL, $ticket = NULL)
{
$this->calls[] = [__FUNCTION__] + get_defined_vars();

return parent::exchange_unbind($destination, $source, $routing_key, $arguments, $ticket);
return parent::exchange_unbind($destination, $source, $routing_key, $nowait, $arguments, $ticket);
}


Expand Down

0 comments on commit 2083b83

Please sign in to comment.