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 |
|
|
|
|
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 |
|
|
|
|
73
|
|
|
* |
74
|
|
|
* @return self |
75
|
|
|
*/ |
76
|
|
|
public function setSecretKey($value) |
77
|
|
|
{ |
78
|
|
|
return $this->setParameter('secretKey', $value); |
79
|
|
|
} |
80
|
|
|
|
81
|
|
|
/** |
82
|
|
|
* Get the secret key for notification signing. |
83
|
|
|
* |
84
|
|
|
* @return string secret key |
85
|
|
|
*/ |
86
|
|
|
public function getSecretKey2() |
87
|
|
|
{ |
88
|
|
|
return $this->getParameter('secretKey2'); |
89
|
|
|
} |
90
|
|
|
|
91
|
|
|
/** |
92
|
|
|
* Set the secret key for notification signing. |
93
|
|
|
* |
94
|
|
|
* @param string $value secret key |
95
|
|
|
* |
96
|
|
|
* @return self |
97
|
|
|
*/ |
98
|
|
|
public function setSecretKey2($value) |
99
|
|
|
{ |
100
|
|
|
return $this->setParameter('secretKey2', $value); |
101
|
|
|
} |
102
|
|
|
|
103
|
|
|
} |
104
|
|
|
|
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 methodfinale(...)
.The most likely cause is that the parameter was removed, but the annotation was not.