Skip to content

Commit

Permalink
Merge pull request #178 from prolic/phpdoc
Browse files Browse the repository at this point in the history
add phpdoc
  • Loading branch information
videlalvaro committed Nov 27, 2014
2 parents b97f2c4 + fea65c9 commit 4d57fde
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions PhpAmqpLib/Channel/AMQPChannel.php
Expand Up @@ -333,8 +333,6 @@ protected function access_request_ok($args)
* @param bool $auto_delete
* @param bool $internal
* @param bool $nowait
* @param null $arguments
* @param null $ticket
* @return mixed|null
*/
public function exchange_declare(
Expand Down Expand Up @@ -889,8 +887,8 @@ protected function basic_cancel_ok($args)
* @param bool $no_ack
* @param bool $exclusive
* @param bool $nowait
* @param null $callback
* @param null $ticket
* @param callback|null $callback
* @param int|null $ticket
* @param array $arguments
* @return mixed|string
*/
Expand Down Expand Up @@ -1128,6 +1126,11 @@ public function batch_basic_publish(
$this->batch_messages[] = func_get_args();
}

/**
* Publish batch
*
* @return void
*/
public function publish_batch()
{
if (empty($this->batch_messages)) {
Expand Down Expand Up @@ -1323,6 +1326,8 @@ public function confirm_select($nowait = false)

/**
* Confirms a selection
*
* @return void
*/
public function confirm_select_ok()
{
Expand Down

0 comments on commit 4d57fde

Please sign in to comment.