Passed
Pull Request — main (#2)
by Leith
02:47
created

Gateway::createCard()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 1
c 0
b 0
f 0
nc 1
nop 1
dl 0
loc 3
rs 10
1
<?php
2
3
namespace Omnipay\Worldline;
4
5
use Omnipay\Common\AbstractGateway;
6
use Omnipay\Worldline\Message\CompletePurchaseRequest;
7
use Omnipay\Worldline\Message\CreateCardRequest;
8
use Omnipay\Worldline\Message\FetchTransactionRequest;
9
use Omnipay\Worldline\Message\PurchaseRequest;
10
use Omnipay\Worldline\Message\RefundRequest;
11
12
/**
13
 * Worldline Hosted Checkout Gateway
14
 *
15
 * @link http://www..worldline-solutions.com/
16
 *
17
 * @see https://docs.direct.worldline-solutions.com/en/api-reference#tag/HostedCheckout
18
 */
19
class Gateway extends AbstractGateway
20
{
21
    public function getName()
22
    {
23
        return 'Worldline';
24
    }
25
26
    public function getDefaultParameters()
27
    {
28
        return array(
29
            'apiKey'     => '',
30
            'apiSecret'  => '',
31
            'merchantId' => '',
32
            'testMode'   => false,
33
        );
34
    }
35
36
    public function getApiKey()
37
    {
38
        return $this->getParameter('apiKey');
39
    }
40
41
    public function setApiKey($value)
42
    {
43
        return $this->setParameter('apiKey', $value);
44
    }
45
46
    public function getApiSecret()
47
    {
48
        return $this->getParameter('apiSecret');
49
    }
50
51
    public function setApiSecret($value)
52
    {
53
        return $this->setParameter('apiSecret', $value);
54
    }
55
56
    public function getMerchantId()
57
    {
58
        return $this->getParameter('merchantId');
59
    }
60
61
    public function setMerchantId($value)
62
    {
63
        return $this->setParameter('merchantId', $value);
64
    }
65
66
    public function purchase(array $parameters = [])
67
    {
68
        return $this->createRequest(PurchaseRequest::class, $parameters);
69
    }
70
71
    public function completePurchase(array $parameters = [])
72
    {
73
        return $this->createRequest(CompletePurchaseRequest::class, $parameters);
74
    }
75
76
    public function createCard(array $parameters = [])
77
    {
78
        return $this->createRequest(CreateCardRequest::class, $parameters);
79
    }
80
81
    public function completeCreateCard(array $parameters = array())
82
    {
83
        return $this->completePurchase($parameters);
84
    }
85
86
    public function refund(array $parameters = [])
87
    {
88
        return $this->createRequest(RefundRequest::class, $parameters);
89
    }
90
91
    public function fetchTransaction(array $parameters = [])
92
    {
93
        return $this->createRequest(FetchTransactionRequest::class, $parameters);
94
    }
95
}
96