CaptureResponse
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 5
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 3

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
wmc 0
lcom 0
cbo 3
dl 0
loc 5
ccs 0
cts 0
cp 0
c 0
b 0
f 0
1
<?php
2
3
namespace Omnipay\BillPay\Message;
4
5
use Omnipay\BillPay\Message\ResponseData\BaseDataTrait;
6
use Omnipay\BillPay\Message\ResponseData\InvoiceBankAccountTrait;
7
use Omnipay\Common\Message\AbstractResponse;
8
9
/**
10
 * Class CaptureResponse
11
 *
12
 * Example xml:
13
 * <code>
14
 * <?xml version="1.0" encoding="UTF-8"?>
15
 * <data customer_message="" error_code="0" merchant_message="">
16
 *   <invoice_bank_account account_holder="BillPay GmbH"
17
 *                         account_number="DE07312312312312312"
18
 *                         bank_code="BELADEBEXXX"
19
 *                         bank_name="Sparkasse Berlin"
20
 *                         invoice_reference="BP555666777/9999"/>
21
 * </data>
22
 * </code>
23
 *
24
 * @author    Andreas Lange <[email protected]>
25
 * @copyright 2016, Connox GmbH
26
 * @license   MIT
27
 */
28
class CaptureResponse extends AbstractResponse
29
{
30
    use BaseDataTrait;
31
    use InvoiceBankAccountTrait;
32
}
33