Conditions | 3 |
Paths | 3 |
Total Lines | 6 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 3 |
Changes | 0 |
1 | <?php |
||
22 | 3 | public static function check(array $order) : void |
|
23 | { |
||
24 | 3 | $required = ['out_trade_no', 'total_amount', 'subject']; |
|
25 | 3 | foreach ($required as $key => $item) { |
|
26 | 3 | if (! array_key_exists($item, $order)) { |
|
27 | 3 | throw new \InvalidArgumentException("The {$item} field is required"); |
|
28 | } |
||
32 |