Conditions | 4 |
Paths | 3 |
Total Lines | 7 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 1 | Features | 1 |
1 | <?php |
||
18 | protected function showError(array $response): void |
||
19 | { |
||
20 | $this->io->error('Status: ' . $response['status'] . ', Detail: ' . $response['detail']); |
||
21 | |||
22 | if (isset($response['errors']) && count($response['errors']) > 0) { |
||
23 | foreach ($response['errors'] as $error) { |
||
24 | $this->io->listing($error); |
||
25 | } |
||
29 |