Completed
Push — master ( a52065...6a2a6b )
by Dmitry
02:22
created

AbstractRequest::setSecretKey2()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 0
Metric Value
dl 0
loc 4
ccs 0
cts 3
cp 0
rs 10
c 0
b 0
f 0
cc 1
eloc 2
nc 1
nop 1
crap 2
1
<?php
2
/**
3
 * FreeKassa driver for Omnipay PHP payment library
4
 *
5
 * @link      https://github.com/hiqdev/omnipay-freekassa
6
 * @package   omnipay-freekassa
7
 * @license   MIT
8
 * @copyright Copyright (c) 2017, HiQDev (http://hiqdev.com/)
9
 */
10
11
namespace Omnipay\FreeKassa\Message;
12
13
/**
14
 * FreeKassa Abstract Request.
15
 */
16
abstract class AbstractRequest extends \Omnipay\Common\Message\AbstractRequest
17
{
18
    protected $zeroAmountAllowed = false;
19
20
    /**
21
     * Get the purse.
22
     * @return string purse
23
     */
24
    public function getPurse()
25
    {
26
        return $this->getParameter('purse');
27
    }
28
29
    /**
30
     * Set the purse.
31
     * @param string $purse purse
0 ignored issues
show
Bug introduced by
There is no parameter named $purse. Was it maybe removed?

This check looks for PHPDoc comments describing methods or function parameters that do not exist on the corresponding method or function.

Consider the following example. The parameter $italy is not defined by the method finale(...).

/**
 * @param array $germany
 * @param array $island
 * @param array $italy
 */
function finale($germany, $island) {
    return "2:1";
}

The most likely cause is that the parameter was removed, but the annotation was not.

Loading history...
32
     * @return self
33
     */
34
    public function setPurse($value)
35
    {
36
        return $this->setParameter('purse', $value);
37
    }
38
39
    /**
40
     * Get the secret key.
41
     * @return string secret key
42
     */
43
    public function getSecretKey()
44
    {
45
        return $this->getParameter('secretKey');
46
    }
47
48
    /**
49
     * Set the secret key.
50
     * @param string $key secret key
0 ignored issues
show
Bug introduced by
There is no parameter named $key. Was it maybe removed?

This check looks for PHPDoc comments describing methods or function parameters that do not exist on the corresponding method or function.

Consider the following example. The parameter $italy is not defined by the method finale(...).

/**
 * @param array $germany
 * @param array $island
 * @param array $italy
 */
function finale($germany, $island) {
    return "2:1";
}

The most likely cause is that the parameter was removed, but the annotation was not.

Loading history...
51
     * @return self
52
     */
53
    public function setSecretKey($value)
54
    {
55
        return $this->setParameter('secretKey', $value);
56
    }
57
58
59
    /**
60
     * Get the secret key for notification signing.
61
     *
62
     * @return string secret key
63
     */
64
    public function getSecretKey2()
65
    {
66
        return $this->getParameter('secretKey2');
67
    }
68
69
    /**
70
     * Set the secret key for notification signing.
71
     *
72
     * @param string $value secret key
73
     *
74
     * @return self
75
     */
76
    public function setSecretKey2($value)
77
    {
78
        return $this->setParameter('secretKey2', $value);
79
    }
80
}
81