| Conditions | 1 |
| Paths | 1 |
| Total Lines | 16 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 26 | public function __construct(array $claims) |
||
| 27 | { |
||
| 28 | // $missingClaims = array_diff(self::REQUIRED_CLAIMS, array_keys($claims)); |
||
| 29 | // if (!empty($missingClaims)) { |
||
| 30 | // throw new \Exception('Missing claims : ' . implode(', ', $missingClaims)); |
||
| 31 | // } |
||
| 32 | |||
| 33 | // $undefinedClaims = array_diff(array_keys($claims), self::DEFINED_CLAIMS); |
||
| 34 | // if (!empty($undefinedClaims)) { |
||
| 35 | // throw new \Exception('Undefined claims : ' . implode(', ', $undefinedClaims)); |
||
| 36 | // } |
||
| 37 | |||
| 38 | // todo check nonce required if present in authentication request |
||
| 39 | // todo check auth_time if max_age request is made or auth_time is required via config |
||
| 40 | |||
| 41 | $this->claims = $claims; |
||
| 42 | } |
||
| 60 | } |
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