OtherConnection
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 9
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 0
c 1
b 0
f 0
lcom 0
cbo 1
dl 0
loc 9
1
<?php
2
3
namespace devtransition\rabbitmq\base;
4
5
6
7
use yii\helpers\VarDumper;
8
9
class OtherConnection extends Connection  implements ConnectionInterface
0 ignored issues
show
Coding Style introduced by
Expected 1 space before implements keyword; 2 found
Loading history...
10
{
11
12
    public $value;
13
14
    public $other = true;
15
16
17
}
18