Passed
Branch master (f61680)
by Pavel
02:38
created

AbstractRpcTest   A

Complexity

Total Complexity 8

Size/Duplication

Total Lines 77
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 3

Importance

Changes 0
Metric Value
wmc 8
lcom 1
cbo 3
dl 0
loc 77
rs 10
c 0
b 0
f 0
1
<?php
2
3
namespace ScayTrase\Api\Rpc\Tests;
4
5
use PHPUnit\Framework\TestCase;
6
7
/**
8
 * @deprecated use RpcRequestTrait instead to avoid inheritance lock
9
 */
10
abstract class AbstractRpcTest extends TestCase
11
{
12
    use RpcRequestTrait;
13
}
14