Completed
Push — master ( b949ef...fff8c1 )
by Chris
02:27
created

Getters   A

Complexity

Total Complexity 4

Size/Duplication

Total Lines 22
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Test Coverage

Coverage 100%

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 4
c 1
b 0
f 0
lcom 0
cbo 0
dl 0
loc 22
ccs 8
cts 8
cp 1
rs 10

4 Methods

Rating   Name   Duplication   Size   Complexity  
A getMD5() 0 4 1
A getSHA1() 0 4 1
A getCSR() 0 4 1
A getEndpoint() 0 4 1
1
<?php
2
3
namespace Xigen\Traits\ComodoDecodeCSR;
4
5
trait Getters
6
{
7 2
    public function getMD5()
8
    {
9 2
        return $this->MD5;
10
    }
11
12 2
    public function getSHA1()
13
    {
14 2
        return $this->SHA1;
15
    }
16
17 3
    public function getEndpoint()
18
    {
19 3
        return $this->Endpoint;
20
    }
21
22 2
    public function getCSR()
23
    {
24 2
        return $this->CSR;
25
    }
26
}
27