Completed
Push — master ( 557615...cc9489 )
by Daniel
03:13
created

RpcServerConsumer::call()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 5
rs 9.4285
cc 1
eloc 3
nc 1
nop 0
1
<?php
2
3
namespace Cmobi\RabbitmqBundle\Rpc;
4
5
/**
6
 * Cosumer to call another rpc server given current server
7
 *
8
 * Class RpcServerConsumer
9
 * @package Cmobi\RabbitmqBundle\Rpc
10
 */
11
class RpcServerConsumer extends RpcClient
12
{
13
    public function call()
14
    {
15
        $this->refreshChannel();
16
        parent::call();
17
    }
18
}