PhpAmqpLib/Helper/Protocol/Protocol080.php 1 location
|
@@ 621-630 (lines=10) @@
|
| 618 |
|
* @param AMQPReader $args |
| 619 |
|
* @return array |
| 620 |
|
*/ |
| 621 |
|
public static function basicGetOk($args) |
| 622 |
|
{ |
| 623 |
|
$ret = array(); |
| 624 |
|
$ret[] = $args->read_longlong(); |
| 625 |
|
$ret[] = $args->read_bit(); |
| 626 |
|
$ret[] = $args->read_shortstr(); |
| 627 |
|
$ret[] = $args->read_shortstr(); |
| 628 |
|
$ret[] = $args->read_long(); |
| 629 |
|
return $ret; |
| 630 |
|
} |
| 631 |
|
|
| 632 |
|
|
| 633 |
|
|
PhpAmqpLib/Helper/Protocol/Protocol091.php 1 location
|
@@ 678-687 (lines=10) @@
|
| 675 |
|
* @param AMQPReader $args |
| 676 |
|
* @return array |
| 677 |
|
*/ |
| 678 |
|
public static function basicGetOk($args) |
| 679 |
|
{ |
| 680 |
|
$ret = array(); |
| 681 |
|
$ret[] = $args->read_longlong(); |
| 682 |
|
$ret[] = $args->read_bit(); |
| 683 |
|
$ret[] = $args->read_shortstr(); |
| 684 |
|
$ret[] = $args->read_shortstr(); |
| 685 |
|
$ret[] = $args->read_long(); |
| 686 |
|
return $ret; |
| 687 |
|
} |
| 688 |
|
|
| 689 |
|
|
| 690 |
|
|