| Conditions | 4 |
| Paths | 5 |
| Total Lines | 16 |
| Code Lines | 12 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 10 | public static function verifyAppCredentials($merchantClientId, $merchantClientSecret) |
||
| 11 | { |
||
| 12 | try { |
||
| 13 | if (empty($merchantClientId)) { |
||
| 14 | return ['client_id' => '', 'error' => true, 'message' => trans('bSecurePayments::messages.client.id.invalid')]; |
||
| 15 | } else if (empty($merchantClientSecret)) { |
||
| 16 | return ['client_id' => '', 'error' => true, 'message' => trans('bSecurePayments::messages.client.secret.invalid')]; |
||
| 17 | } else { |
||
| 18 | return [ |
||
| 19 | 'client_id' => $merchantClientId, |
||
| 20 | 'client_secret' => $merchantClientSecret, |
||
| 21 | 'error' => false, |
||
| 22 | ]; |
||
| 23 | } |
||
| 24 | } catch (Exception $e) { |
||
| 25 | return ['client_id' => '', 'error' => true, 'message' => $e->getTraceAsString()]; |
||
| 26 | } |
||
| 29 |
The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g.
excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths