Passed
Push — master ( 6ce97f...1fe2f9 )
by huang
05:13
created

Client::async()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 0
Metric Value
cc 1
eloc 1
nc 1
nop 0
dl 0
loc 3
rs 10
c 0
b 0
f 0
ccs 0
cts 2
cp 0
crap 2
1
<?php
2
/**
3
 * @author    jan huang <[email protected]>
4
 * @copyright 2017
5
 *
6
 * @see      https://www.github.com/janhuang
7
 * @see      http://www.fast-d.cn/
8
 */
9
10
namespace FastD\Servitization\Client;
11
12
/**
13
 * Class Consumer.
14
 */
15
class Client extends \FastD\Swoole\Client
16
{
17
    public function single()
18
    {
19
    }
20
21
    public function multi()
22
    {
23
    }
24
25
    public function async()
26
    {
27
    }
28
29
    public function promise(array $urls)
0 ignored issues
show
Unused Code introduced by
The parameter $urls is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
30
    {
31
    }
32
}
33