Completed
Push — master ( 880bda...d7c7b0 )
by Florian
24s queued 11s
created

Walletwechatpay   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 1
dl 0
loc 12
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A getKey() 0 4 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 to newer
12
 * versions in the future. If you wish to customize Payone 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) 2020 <[email protected]> - www.fatchip.de
19
 * @author          Fatchip GmbH <[email protected]>
20
 * @license         <http://www.gnu.org/licenses/> GNU General Public License (GPL 3)
21
 * @link            https://www.fatchip.de
22
 */
23
24
/**
25
 *
26
 * @category        Payone
27
 * @package         Payone_Settings
28
 * @subpackage      Data
29
 * @copyright       Copyright (c) 2020 <[email protected]> - www.fatchip.de
30
 * @license         <http://www.gnu.org/licenses/> GNU General Public License (GPL 3)
31
 * @link            https://www.fatchip.de
32
 */
33
class Payone_Settings_Data_ConfigFile_PaymentMethod_Walletwechatpay
34
    extends Payone_Settings_Data_ConfigFile_PaymentMethod_Abstract
35
    implements Payone_Settings_Data_ConfigFile_Interface
36
{
37
    /** @var string */
38
    protected $key = Payone_Enum_ClearingType::WALLETWECHATPAY;
39
40
    public function getKey()
41
    {
42
        return $this->key;
43
    }
44
}