Total Complexity | 3 |
Total Lines | 29 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
23 | abstract class AbstractResponseType implements ResponseTypeInterface |
||
24 | { |
||
25 | use CryptTrait; |
||
26 | |||
27 | protected AccessTokenEntityInterface $accessToken; |
||
28 | |||
29 | protected RefreshTokenEntityInterface $refreshToken; |
||
30 | |||
31 | protected CryptKeyInterface $privateKey; |
||
32 | |||
33 | 6 | public function setAccessToken( |
|
34 | #[SensitiveParameter] |
||
35 | AccessTokenEntityInterface $accessToken |
||
36 | ): void { |
||
37 | 6 | $this->accessToken = $accessToken; |
|
38 | } |
||
39 | |||
40 | 6 | public function setRefreshToken( |
|
45 | } |
||
46 | |||
47 | 15 | public function setPrivateKey( |
|
54 |
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