Completed
Push — develop ( fd7b2c...32742a )
by Stoea
01:56
created

beforeCreatingTransaction()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 2
1
<?php
2
3
namespace App\LaravelMobilpay;
4
5
use Stl30\LaravelMobilpay\CustomActionsAndNotifications;
6
use Stl30\LaravelMobilpay\Mobilpay\Payment\Request\Mobilpay_Payment_Request_Abstract;
7
use Stl30\LaravelMobilpay\Mobilpay\Payment\Request\Mobilpay_Payment_Request_Card;
8
use Stl30\LaravelMobilpay\MobilpayTransaction;
9
10
class LaravelMobilpayCustomActionsAndNotifications extends CustomActionsAndNotifications
11
{
12
    public function beforeCreatingTransaction(Mobilpay_Payment_Request_Card $mobilpayRequestObject, $customDataParameter = '')
13
    {
14
        
15
    }
16
17
    public function afterCreatingTransaction(MobilpayTransaction $transaction, $addTransactionIsSuccessful)
18
    {
19
    }
20
21
    public function beforeUpdatingTransaction(Mobilpay_Payment_Request_Abstract $mobilpayReturnObject, $orderStatus)
22
    {
23
    }
24
25
    public function afterUpdatingTransaction(MobilpayTransaction $transaction, $updatedIsSuccessful)
26
    {
27
    }
28
29
    public function onTransactionError($errorCode, $errorType, $errorMessage, $mobilpayReturnObject)
30
    {
31
    }
32
33
}
34