Test Failed
Pull Request — master (#12)
by
unknown
02:05
created

ThreeDS2AuthorizationInformation::getAcsUrl()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 0
1
<?php
2
3
namespace Cardinity\Method\Payment;
4
5
use Cardinity\Method\ResultObject;
6
7
8
class ThreeDS2AuthorizationInformation extends ResultObject
9
{
10
    /** @var STRING */
11
    private $acsUrl;
12
13
    /** @var STRING */
14
    private $cReq;
15
16
17
    /**
18
     * @return STRING
19
     */
20
    public function getAcsUrl()
21
    {
22
        return $this->acsUrl;
23
    }
24
25
26
    /**
27
     * @param STRING
28
     * @return VOID
29
     */
30
    public function setAcsUrl(string $acsUrl) : void
31
    {
32
        $this->acsUrl = $acsUrl;
33
    }
34
35
36
    /**
37
     * @return STRING
38
     */
39
    public function getCReq()
40
    {
41
        return $this->cReq;
42
    }
43
44
45
    /**
46
     * @param STRING
47
     * @return VOID
48
     */
49
    public function setCReq(string $cReq) : void
50
    {
51
        $this->cReq = $cReq;
52
    }
53
    
54
    public function getErrors()
55
    {
56
        
57
    }
58
}