Conditions | 2 |
Paths | 2 |
Total Lines | 16 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
25 | public function indexAction(Request $request) |
||
26 | { |
||
27 | $factFinderTrackingRequestTransfer = new FactFinderSdkTrackingRequestTransfer(); |
||
28 | $factFinderTrackingRequestTransfer->fromArray($request->query->all()); |
||
29 | |||
30 | $this->setFactFinderSid($request, $factFinderTrackingRequestTransfer); |
||
31 | |||
32 | $factFinderTrackingResponseTransfer = $this->getFactory() |
||
33 | ->getFactFinderClient() |
||
34 | ->track($factFinderTrackingRequestTransfer); |
||
35 | |||
36 | if (!$factFinderTrackingResponseTransfer->getResult()) { |
||
37 | return $this->jsonResponse(null, 400); |
||
38 | } |
||
39 | |||
40 | return $this->jsonResponse(); |
||
41 | } |
||
55 |
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