Total Complexity | 7 |
Total Lines | 62 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
16 | class CustomerVerification extends Controller |
||
17 | { |
||
18 | |||
19 | /** |
||
20 | * Author: Sara Hasan |
||
21 | * Date: 26-November-2020 |
||
22 | */ |
||
23 | public function verifyCustomer($auth_code) |
||
47 | } |
||
48 | } |
||
49 | |||
50 | |||
51 | /** |
||
52 | * Author: Sara Hasan |
||
53 | * Date: 27-November-2020 |
||
54 | */ |
||
55 | private function _checkForValidationRule($auth_code) |
||
56 | { |
||
57 | $errors = []; |
||
58 | |||
59 | if( empty($auth_code) ) |
||
60 | { |
||
61 | $errors[] = trans('bSecure::messages.validation.auth_code.required'); |
||
62 | } |
||
63 | |||
64 | return $errors; |
||
65 | } |
||
66 | |||
67 | /** |
||
68 | * Author: Sara Hasan |
||
69 | * Date: 26-November-2020 |
||
70 | */ |
||
71 | private function createSSOProfileStructure($auth_code) |
||
78 | } |
||
79 | |||
81 |
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