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

AbstractRpcTest::getRequestMock()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 8
Code Lines 5

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 8
rs 9.4285
c 0
b 0
f 0
cc 1
eloc 5
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