| Total Complexity | 2 |
| Total Lines | 20 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 11 | class encryptedCredentials extends types { |
||
|
|
|||
| 12 | /** Keep all of properties which has sub properties */ |
||
| 13 | private const subs = []; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * Base64-encoded encrypted JSON-serialized data with unique user's payload, data hashes and secrets required for |
||
| 17 | * EncryptedPassportElement decryption and authentication |
||
| 18 | */ |
||
| 19 | public string $data; |
||
| 20 | |||
| 21 | /** Base64-encoded data hash for data authentication */ |
||
| 22 | public string $hash; |
||
| 23 | |||
| 24 | /** Base64-encoded secret, encrypted with the bot's public RSA key, required for data decryption */ |
||
| 25 | public string $secret; |
||
| 26 | |||
| 27 | |||
| 28 | public function __construct(stdClass|null $object = null) { |
||
| 34 |
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