| Total Complexity | 1 |
| Total Lines | 24 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 0 | ||
| 1 | <?php |
||
| 9 | class ScanPayment extends AbstractWechat |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * Use scan to pay for order. |
||
| 13 | * |
||
| 14 | * @param string $gateway |
||
| 15 | * @param array $payload |
||
| 16 | * |
||
| 17 | * @return \Illuminate\Support\Collection |
||
| 18 | * |
||
| 19 | * @throws \InvalidArgumentException |
||
| 20 | * @throws \Nilnice\Payment\Exception\GatewayException |
||
| 21 | * @throws \Nilnice\Payment\Exception\InvalidKeyException |
||
| 22 | * @throws \Nilnice\Payment\Exception\InvalidSignException |
||
| 23 | */ |
||
| 24 | public function toPay(string $gateway, array $payload) : Collection |
||
| 35 |
This check compares calls to functions or methods with their respective definitions. If the call has more arguments than are defined, it raises an issue.
If a function is defined several times with a different number of parameters, the check may pick up the wrong definition and report false positives. One codebase where this has been known to happen is Wordpress. Please note the @ignore annotation hint above.