Passed
Push — trunk ( b25d7b...3c7131 )
by Christian
11:39 queued 13s
created

InvoicePayment::captureRecurring()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 2
Code Lines 0

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 0
nc 1
nop 2
dl 0
loc 2
rs 10
c 0
b 0
f 0
1
<?php declare(strict_types=1);
2
3
namespace Shopware\Core\Checkout\Payment\Cart\PaymentHandler;
4
5
use Shopware\Core\Checkout\Payment\Cart\RecurringPaymentTransactionStruct;
6
use Shopware\Core\Framework\Context;
7
use Shopware\Core\Framework\Log\Package;
8
9
#[Package('checkout')]
10
class InvoicePayment extends DefaultPayment implements RecurringPaymentHandlerInterface
11
{
12
    public function captureRecurring(RecurringPaymentTransactionStruct $transaction, Context $context): void
13
    {
14
    }
15
}
16