| Total Complexity | 3 |
| Total Lines | 19 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 9 | abstract class AbstractAlipay implements PaymentInterface |
||
| 10 | { |
||
| 11 | use SecurityTrait; |
||
| 12 | use RequestTrait; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * Check order arguments. |
||
| 16 | * |
||
| 17 | * @param array $order |
||
| 18 | * |
||
| 19 | * @return void |
||
| 20 | * @throws \InvalidArgumentException |
||
| 21 | */ |
||
| 22 | 3 | public static function check(array $order) : void |
|
| 32 |