| Conditions | 2 |
| Paths | 2 |
| Total Lines | 14 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 6 |
| Changes | 0 | ||
| 1 | <?php |
||
| 42 | public function getMandatoryFields(): array |
||
| 43 | { |
||
| 44 | $return = [ |
||
| 45 | 'pre_checkout_query_id', |
||
| 46 | 'ok', |
||
| 47 | ]; |
||
| 48 | |||
| 49 | // Shipping options are mandatory if ok is set to true, otherwise, error_message is |
||
| 50 | if ($this->ok === false) { |
||
| 51 | $return[] = 'error_message'; |
||
| 52 | } |
||
| 53 | |||
| 54 | return $return; |
||
| 55 | } |
||
| 56 | } |
||
| 57 |