Completed
Push — master ( d4ac9e...63718e )
by
unknown
02:03 queued 10s
created

Pseudo::setKey()   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 1
1
<?php
2
/**
3
 *
4
 * NOTICE OF LICENSE
5
 *
6
 * This source file is subject to the GNU General Public License (GPL 3)
7
 * that is bundled with this package in the file LICENSE.txt
8
 *
9
 * DISCLAIMER
10
 *
11
 * Do not edit or add to this file if you wish to upgrade Payone_Core to newer
12
 * versions in the future. If you wish to customize Payone_Core for your
13
 * needs please refer to http://www.payone.de for more information.
14
 *
15
 * @category        Payone
16
 * @package         Payone_Settings
17
 * @subpackage      Data
18
 * @copyright       Copyright (c) 2019 <[email protected]> - www.fatchip.com
19
 * @author          Vincent Boulanger <[email protected]>
20
 * @license         <http://www.gnu.org/licenses/> GNU General Public License (GPL 3)
21
 * @link            http://www.fatchip.com
22
 */
23
24
/**
25
 *
26
 * @category        Payone
27
 * @package         Payone_Settings
28
 * @subpackage      Data
29
 * @copyright       Copyright (c) 2019 <[email protected]> - www.fatchip.com
30
 * @author          Vincent Boulanger <[email protected]>
31
 * @license         <http://www.gnu.org/licenses/> GNU General Public License (GPL 3)
32
 * @link            http://www.e3n.de
33
 */
34
class Payone_Settings_Data_ConfigFile_PaymentMethod_Pseudo
35
    extends Payone_Settings_Data_ConfigFile_PaymentMethod_Abstract
36
    implements Payone_Settings_Data_ConfigFile_Interface
37
{
38
    /** @var string */
39
    protected $key = '';
40
41
    /**
42
     * @return string
43
     */
44
    public function getKey()
45
    {
46
        return $this->key;
47
    }
48
49
    /**
50
     * @param string $key
51
     */
52
    public function setKey($key)
53
    {
54
        $this->key = $key;
55
    }
56
}
57