| Conditions | 1 | 
| Paths | 1 | 
| Total Lines | 24 | 
| Code Lines | 13 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 0 | ||
| 1 | <?php  | 
            ||
| 28 | public function profile() : \Closure  | 
            ||
| 29 |     { | 
            ||
| 30 | $stopwatch = $this->stopwatch;  | 
            ||
| 31 | |||
| 32 |         return function (callable $handler) use ($stopwatch) { | 
            ||
| 33 | |||
| 34 |             return function ($request, array $options) use ($handler, $stopwatch) { | 
            ||
| 35 | $event = $stopwatch->start(  | 
            ||
| 36 |                     sprintf('%s %s', $request->getMethod(), $request->getUri()), | 
            ||
| 37 | 'eight_points_guzzle'  | 
            ||
| 38 | );  | 
            ||
| 39 | |||
| 40 | return $handler($request, $options)->then(  | 
            ||
| 41 | |||
| 42 |                     function ($response) use ($event) { | 
            ||
| 43 | $event->stop();  | 
            ||
| 44 | |||
| 45 | return $response;  | 
            ||
| 46 | },  | 
            ||
| 47 | |||
| 48 |                     function ($reason) use ($event) { | 
            ||
| 49 | $event->stop();  | 
            ||
| 50 | |||
| 51 | return \GuzzleHttp\Promise\rejection_for($reason);  | 
            ||
| 52 | }  | 
            ||
| 58 | 
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