| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 7 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 48 | 1 | protected function getPossibleErrors() |
|
| 49 | { |
||
| 50 | 1 | return array_merge(parent::getPossibleErrors(), [ |
|
| 51 | 1 | 'invalid_client_id' => 'Value passed for client_id was invalid', |
|
| 52 | 1 | 'bad_client_secret' => 'Value passed for client_secret was invalid', |
|
| 53 | 1 | 'invalid_code' => 'Value passed for code was invalid', |
|
| 54 | 1 | 'bad_redirect_uri' => 'Value passed for redirect_uri did not match the redirect_uri in the original request', |
|
| 55 | 1 | ]); |
|
| 56 | } |
||
| 57 | } |
||
| 58 |