Completed
Push — master ( d77618...1290c6 )
by Florian
04:20
created

Payolution   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 16
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 1
Bugs 0 Features 1
Metric Value
wmc 1
c 1
b 0
f 1
lcom 0
cbo 1
dl 0
loc 16
rs 10

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) 2015 <[email protected]> - www.fatchip.com
19
 * @author          Robert M�ller <[email protected]>
20
 * @license         <http://www.gnu.org/licenses/> GNU General Public License (GPL 3)
21
 * @link            http://www.fatchip.com
22
 */
23
class Payone_Settings_Data_ConfigFile_PaymentMethod_Payolution
24
    extends Payone_Settings_Data_ConfigFile_PaymentMethod_Abstract
25
    implements Payone_Settings_Data_ConfigFile_Interface
26
{
27
    /** @var string */
28
    protected $key = Payone_Enum_ClearingType::PAYOLUTION;
29
30
    /**
31
     * @return string
32
     */
33
    public function getKey()
34
    {
35
        return $this->key;
36
    }
37
    
38
}
39