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