1 | <?php |
||
7 | final class TestClient implements RpcClientInterface |
||
8 | { |
||
9 | /** @var RpcClientInterface */ |
||
10 | private $delegate; |
||
11 | |||
12 | /** |
||
13 | * TestClient constructor. |
||
14 | * |
||
15 | * @param RpcClientInterface $delegate |
||
16 | */ |
||
17 | 4 | public function __construct(RpcClientInterface $delegate) |
|
21 | |||
22 | /** {@inheritdoc} */ |
||
23 | 1 | public function invoke($calls) |
|
27 | } |
||
28 |