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

Getters::getEndpoint()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 2
CRAP Score 1

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 4
ccs 2
cts 2
cp 1
rs 10
cc 1
eloc 2
nc 1
nop 0
crap 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