| Conditions | 9 |
| Paths | 2 |
| Total Lines | 15 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 7 |
| CRAP Score | 9 |
| Changes | 2 | ||
| Bugs | 1 | Features | 0 |
| 1 | <?php |
||
| 9 | 45 | public function isSuccessful() |
|
| 10 | { |
||
| 11 | if (( |
||
|
|
|||
| 12 | 45 | (isset($this->data->receipt->Complete) && (bool) $this->data->receipt->Complete === true) || |
|
| 13 | 45 | (isset($this->data->receipt->ResSuccess) && (bool) $this->data->receipt->ResSuccess === true) |
|
| 14 | ) && |
||
| 15 | ( |
||
| 16 | 39 | isset($this->data->receipt->ResponseCode) && $this->data->receipt->ResponseCode != 'null' && |
|
| 17 | 45 | (int) $this->data->receipt->ResponseCode >= 0 && (int) $this->data->receipt->ResponseCode <= 49 |
|
| 18 | ) |
||
| 19 | ) { |
||
| 20 | 21 | return true; |
|
| 21 | } |
||
| 22 | |||
| 23 | 24 | return false; |
|
| 24 | } |
||
| 74 |