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

AbstractRpcTest::getClientMock()   A

Complexity

Conditions 3
Paths 1

Size

Total Lines 21
Code Lines 12

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 21
rs 9.3142
c 0
b 0
f 0
cc 3
eloc 12
nc 1
nop 2
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