Total Complexity | 3 |
Total Lines | 45 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
14 | class IdToken implements IdTokenInterface |
||
15 | { |
||
16 | /** |
||
17 | * @var array |
||
18 | */ |
||
19 | protected $claims; |
||
20 | |||
21 | /** |
||
22 | * IdToken constructor. |
||
23 | * @param array $claims |
||
24 | * @throws \Exception |
||
25 | */ |
||
26 | public function __construct(array $claims) |
||
42 | } |
||
43 | |||
44 | public function getClaims() : array |
||
47 | } |
||
48 | |||
49 | /** |
||
50 | * Specify data which should be serialized to JSON |
||
51 | * @link http://php.net/manual/en/jsonserializable.jsonserialize.php |
||
52 | * @return mixed data which can be serialized by <b>json_encode</b>, |
||
53 | * which is a value of any type other than a resource. |
||
54 | * @since 5.4.0 |
||
55 | */ |
||
56 | public function jsonSerialize() |
||
59 | } |
||
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