Completed
Push — master ( c76d1a...b80522 )
by Dmitry
13:01
created

AbstractRequest::setSecretKey()   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 0
cp 0
rs 10
c 0
b 0
f 0
cc 1
eloc 2
nc 1
nop 1
crap 2
1
<?php
2
/**
3
 * RoboKassa driver for Omnipay PHP payment library.
4
 *
5
 * @link      https://github.com/hiqdev/omnipay-robokassa
6
 * @package   omnipay-robokassa
7
 * @license   MIT
8
 * @copyright Copyright (c) 2015-2017, HiQDev (http://hiqdev.com/)
9
 */
10
11
namespace Omnipay\RoboKassa\Message;
12
13
/**
14
 * RoboKassa Abstract Request.
15
 */
16
abstract class AbstractRequest extends \Omnipay\Common\Message\AbstractRequest
17
{
18
    protected $zeroAmountAllowed = false;
19
20
    /**
21
     * Get the purse.
22
     *
23
     * @return string purse
24
     */
25
    public function getPurse()
26
    {
27
        return $this->getParameter('purse');
28
    }
29
30
    /**
31
     * Set the purse.
32
     *
33
     * @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...
34
     *
35
     * @return self
36
     */
37
    public function setPurse($value)
38
    {
39
        return $this->setParameter('purse', $value);
40
    }
41
42
    /**
43
     * @return string
44
     */
45
    public function getClient()
46
    {
47
        return $this->getParameter('client');
48
    }
49
50
    /**
51
     * @param $value
52
     * @return \Omnipay\Common\Message\AbstractRequest
53
     */
54
    public function setClient($value)
55
    {
56
        return $this->setParameter('client', $value);
57
    }
58
59
    /**
60
     * Get the secret key.
61
     *
62
     * @return string secret key
63
     */
64
    public function getSecretKey()
65
    {
66
        return $this->getParameter('secretKey');
67
    }
68
69
    /**
70
     * Set the secret key.
71
     *
72
     * @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...
73
     *
74
     * @return self
75
     */
76
    public function setSecretKey($value)
77
    {
78
        return $this->setParameter('secretKey', $value);
79
    }
80
}
81