Completed
Push — master ( 0631ec...efcbe2 )
by Andrii
12s
created

Gateway::setFees()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 2
CRAP Score 1

Importance

Changes 0
Metric Value
dl 0
loc 4
ccs 2
cts 2
cp 1
rs 10
c 0
b 0
f 0
cc 1
eloc 2
nc 1
nop 1
crap 1
1
<?php
2
/**
3
 * OKPAY driver for Omnipay PHP payment library.
4
 *
5
 * @link      https://github.com/hiqdev/omnipay-okpay
6
 * @package   omnipay-okpay
7
 * @license   MIT
8
 * @copyright Copyright (c) 2015-2017, HiQDev (http://hiqdev.com/)
9
 */
10
11
namespace Omnipay\OKPAY;
12
13
use Omnipay\Common\AbstractGateway;
14
15
/**
16
 * Gateway Class.
17
 */
18
class Gateway extends AbstractGateway
19
{
20 1
    public function getName()
21
    {
22 1
        return 'OKPAY';
23
    }
24
25 2
    public function getPurse()
26
    {
27 2
        return $this->getParameter('purse');
28
    }
29
30 29
    public function setPurse($value)
31
    {
32 29
        return $this->setParameter('purse', $value);
33
    }
34
35 1
    public function getSecret()
36
    {
37 1
        return $this->getParameter('secret');
38
    }
39
40 4
    public function setSecret($value)
41
    {
42 4
        return $this->setParameter('secret', $value);
43
    }
44
45 4
    public function setFees($value)
46
    {
47 4
        return $this->setParameter('fees', $value);
48
    }
49
50 1
    public function getFees()
51
    {
52 1
        return $this->getParameter('fees');
53
    }
54
55 29
    public function getDefaultParameters()
56
    {
57
        return [
58 29
            'purse' => '',
59 29
            'secret' => '',
60 29
            'fees' => 1,
61 29
        ];
62
    }
63
64 3
    public function purchase(array $parameters = [])
65
    {
66 3
        return $this->createRequest('\Omnipay\OKPAY\Message\PurchaseRequest', $parameters);
67
    }
68
69 3
    public function completePurchase(array $parameters = [])
70
    {
71 3
        return $this->createRequest('\Omnipay\OKPAY\Message\CompletePurchaseRequest', $parameters);
72
    }
73
74 2
    public function refund(array $parameters = [])
75
    {
76 2
        return $this->createRequest('\Omnipay\OKPAY\Message\RefundRequest', $parameters);
77
    }
78
}
79