Skip to content

Commit

Permalink
Merge pull request php-amqplib#681 from AnarbekB/master
Browse files Browse the repository at this point in the history
fix unknown var
  • Loading branch information
lukebakken authored Apr 22, 2019
2 parents d93c599 + d7683ba commit 7bebcaa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion demo/amqp_consumer.php
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,6 @@ function shutdown($channel, $connection)
register_shutdown_function('shutdown', $channel, $connection);

// Loop as long as the channel has callbacks registered
while ($ch->is_consuming()) {
while ($channel ->is_consuming()) {
$channel->wait();
}

0 comments on commit 7bebcaa

Please sign in to comment.