PhpAmqpLib/Helper/Protocol/Protocol080.php 1 location
|
@@ 355-362 (lines=8) @@
|
352 |
|
* @param AMQPReader $args |
353 |
|
* @return array |
354 |
|
*/ |
355 |
|
public static function queueDeclareOk($args) |
356 |
|
{ |
357 |
|
$ret = array(); |
358 |
|
$ret[] = $args->read_shortstr(); |
359 |
|
$ret[] = $args->read_long(); |
360 |
|
$ret[] = $args->read_long(); |
361 |
|
return $ret; |
362 |
|
} |
363 |
|
|
364 |
|
|
365 |
|
|
PhpAmqpLib/Helper/Protocol/Protocol091.php 1 location
|
@@ 411-418 (lines=8) @@
|
408 |
|
* @param AMQPReader $args |
409 |
|
* @return array |
410 |
|
*/ |
411 |
|
public static function queueDeclareOk($args) |
412 |
|
{ |
413 |
|
$ret = array(); |
414 |
|
$ret[] = $args->read_shortstr(); |
415 |
|
$ret[] = $args->read_long(); |
416 |
|
$ret[] = $args->read_long(); |
417 |
|
return $ret; |
418 |
|
} |
419 |
|
|
420 |
|
|
421 |
|
|