| Conditions | 4 |
| Paths | 5 |
| Total Lines | 6 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 5 |
| CRAP Score | 4 |
| Changes | 4 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 13 | 2 | public function isSuccessful(): bool |
|
| 14 | { |
||
| 15 | 2 | return (isset($this->data['status']) && in_array($this->data['status'], [ |
|
| 16 | 1 | self::RESPONSE_STATUS_COMPLETED, |
|
| 17 | 2 | self::RESPONSE_STATUS_SETTLED, |
|
| 18 | 2 | ])) && (isset($this->data['statusCode']) && $this->data['statusCode'] === 200); |
|
| 19 | } |
||
| 37 |