| Conditions | 3 |
| Paths | 3 |
| Total Lines | 6 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 5 |
| CRAP Score | 3 |
| Changes | 0 | ||
| 1 | <?php |
||
| 39 | 3 | public static function check(array $order) : void |
|
| 40 | { |
||
| 41 | 3 | $required = ['out_trade_no', 'total_amount', 'subject']; |
|
| 42 | 3 | foreach ($required as $key => $item) { |
|
| 43 | 3 | if (! array_key_exists($item, $order)) { |
|
| 44 | 3 | throw new \InvalidArgumentException("The {$item} field is required."); |
|
| 45 | } |
||
| 49 |