Conditions | 2 |
Paths | 2 |
Total Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
24 | public static function fromResponse(array $response) |
||
25 | { |
||
26 | if (array_key_exists('error', $response)) { |
||
27 | return new static("[{$response['error']['code']}] {$response['error']['message']}"); |
||
28 | } |
||
29 | |||
30 | return new static("Paddle API request was unsuccessful and no error code/message was returned"); |
||
31 | } |
||
32 | } |
||
33 |