Completed
Push — master ( 620307...8ff95d )
by Dominik
03:16
created

XmlSettlementCreditRequest   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 9
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A getTransactionType() 0 3 1
1
<?php
2
/**
3
 * w-vision
4
 *
5
 * LICENSE
6
 *
7
 * This source file is subject to the GNU General Public License version 3 (GPLv3)
8
 * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt
9
 * files that are distributed with this source code.
10
 *
11
 * @copyright  Copyright (c) 2016 Woche-Pass AG (http://www.w-vision.ch)
12
 * @license    GNU General Public License version 3 (GPLv3)
13
 */
14
15
namespace Omnipay\Datatrans\Message;
16
17
/**
18
 * Class XmlSettlementCreditRequest
19
 *
20
 * @package Omnipay\Datatrans\Message
21
 */
22
class XmlSettlementCreditRequest extends XmlSettlementRequest
23
{
24
    /**
25
     * @return string
26
     */
27
    public function getTransactionType() {
28
        return static::DATATRANS_TRANSACTION_TYPE_CREDIT;
29
    }
30
}
31