CreditCardCheckResponseContainer   A
last analyzed

Complexity

Total Complexity 4

Size/Duplication

Total Lines 46
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 7
c 1
b 0
f 0
dl 0
loc 46
rs 10
wmc 4

4 Methods

Rating   Name   Duplication   Size   Complexity  
A getTruncatedcardpan() 0 3 1
A setTruncatedcardpan() 0 3 1
A setPseudocardpan() 0 3 1
A getPseudocardpan() 0 3 1
1
<?php
2
3
/**
4
 * MIT License
5
 * Use of this software requires acceptance of the Evaluation License Agreement. See LICENSE file.
6
 */
7
8
namespace SprykerEco\Zed\Payone\Business\Api\Response\Container;
9
10
class CreditCardCheckResponseContainer extends AbstractResponseContainer
11
{
12
    /**
13
     * @var string
14
     */
15
    protected $pseudocardpan;
16
17
    /**
18
     * @var string
19
     */
20
    protected $truncatedcardpan;
21
22
    /**
23
     * @param string $truncatedcardpan
24
     *
25
     * @return void
26
     */
27
    public function setTruncatedcardpan($truncatedcardpan)
28
    {
29
        $this->truncatedcardpan = $truncatedcardpan;
30
    }
31
32
    /**
33
     * @return string
34
     */
35
    public function getTruncatedcardpan()
36
    {
37
        return $this->truncatedcardpan;
38
    }
39
40
    /**
41
     * @param string $pseudocardpan
42
     *
43
     * @return void
44
     */
45
    public function setPseudocardpan($pseudocardpan)
46
    {
47
        $this->pseudocardpan = $pseudocardpan;
48
    }
49
50
    /**
51
     * @return string
52
     */
53
    public function getPseudocardpan()
54
    {
55
        return $this->pseudocardpan;
56
    }
57
}
58