| 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 | 6 | public function getPurse() |
|
| 29 | |||
| 30 | /** |
||
| 31 | * Set the purse. |
||
| 32 | * |
||
| 33 | * @param string $purse purse |
||
|
|
|||
| 34 | * |
||
| 35 | * @return self |
||
| 36 | */ |
||
| 37 | 13 | public function setPurse($value) |
|
| 41 | |||
| 42 | /** |
||
| 43 | * Get the secret key. |
||
| 44 | * |
||
| 45 | * @return string secret key |
||
| 46 | */ |
||
| 47 | 6 | public function getSecret() |
|
| 51 | |||
| 52 | /** |
||
| 53 | * Set the secret key. |
||
| 54 | * |
||
| 55 | * @param string $key secret key |
||
| 56 | * |
||
| 57 | * @return self |
||
| 58 | */ |
||
| 59 | 13 | public function setSecret($value) |
|
| 63 | } |
||
| 64 |
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
$italyis not defined by the methodfinale(...).The most likely cause is that the parameter was removed, but the annotation was not.