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

RpcServerConsumer   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 1
c 1
b 0
f 0
lcom 0
cbo 1
dl 0
loc 8
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A call() 0 5 1
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
}