| Conditions | 3 |
| Paths | 3 |
| Total Lines | 11 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 12 |
| Changes | 0 | ||
| 1 | <?php |
||
| 40 | public function authenticate(ServerRequestInterface $request) : ?Client |
||
| 41 | { |
||
| 42 | /** |
||
| 43 | * @var AuthenticatorInterface $authenticator |
||
| 44 | */ |
||
| 45 | foreach ($this->authenticators as $authenticator) { |
||
| 46 | if($client = $authenticator->authenticate($request)) { |
||
| 47 | return $client; |
||
| 48 | } |
||
| 49 | } |
||
| 50 | return null; |
||
| 51 | } |
||
| 53 | } |
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