Conditions | 3 |
Paths | 3 |
Total Lines | 12 |
Lines | 0 |
Ratio | 0 % |
Tests | 3 |
CRAP Score | 3 |
Changes | 0 |
1 | <?php |
||
37 | 2 | public function getMessage() |
|
38 | { |
||
39 | 2 | if ($this->isSuccessful()) |
|
40 | { |
||
41 | return null; |
||
42 | } |
||
43 | if (isset($this->data->paymentResult->errorDetails->errorMessage)) |
||
44 | { |
||
45 | return $this->data->paymentResult->errorDetails->errorMessage; |
||
46 | } |
||
47 | 2 | return $this->data->transactionState; |
|
48 | } |
||
49 | 2 | ||
80 |