1 | <?php |
||
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() |
||
29 | |||
30 | /** |
||
31 | * Set the purse. |
||
32 | * |
||
33 | * @param string $purse purse |
||
|
|||
34 | * |
||
35 | * @return self |
||
36 | */ |
||
37 | public function setPurse($value) |
||
41 | |||
42 | /** |
||
43 | * @return string |
||
44 | */ |
||
45 | public function getClient() |
||
49 | |||
50 | /** |
||
51 | * @param $value |
||
52 | * @return \Omnipay\Common\Message\AbstractRequest |
||
53 | */ |
||
54 | public function setClient($value) |
||
58 | |||
59 | /** |
||
60 | * Get the secret key. |
||
61 | * |
||
62 | * @return string secret key |
||
63 | */ |
||
64 | public function getSecretKey() |
||
68 | |||
69 | /** |
||
70 | * Set the secret key. |
||
71 | * |
||
72 | * @param string $key secret key |
||
73 | * |
||
74 | * @return self |
||
75 | */ |
||
76 | public function setSecretKey($value) |
||
80 | } |
||
81 |
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.