Completed
Push — master ( f6c144...e57eb1 )
by Roberto
10:26
created

Introspection   A

Complexity

Total Complexity 8

Size/Duplication

Total Lines 42
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
wmc 8
lcom 0
cbo 0
dl 0
loc 42
rs 10
c 0
b 0
f 0

8 Methods

Rating   Name   Duplication   Size   Complexity  
A isConnected() 0 4 1
A getHost() 0 4 1
A getPort() 0 4 1
A getDbNum() 0 4 1
A getTimeout() 0 4 1
A getReadTimeout() 0 4 1
A getPersistentID() 0 4 1
A getAuth() 0 4 1
1
<?php
2
3
namespace Webdcg\Redis\Traits;
4
5
trait Introspection
6
{
7
    public function isConnected(): bool
8
    {
9
        return false;
10
    }
11
    
12
    public function getHost(): bool
13
    {
14
        return false;
15
    }
16
    
17
    public function getPort(): bool
18
    {
19
        return false;
20
    }
21
    
22
    public function getDbNum(): bool
23
    {
24
        return false;
25
    }
26
    
27
    public function getTimeout(): bool
28
    {
29
        return false;
30
    }
31
    
32
    public function getReadTimeout(): bool
33
    {
34
        return false;
35
    }
36
    
37
    public function getPersistentID(): bool
38
    {
39
        return false;
40
    }
41
    
42
    public function getAuth(): bool
43
    {
44
        return false;
45
    }
46
}
47