| Total Complexity | 3 |
| Total Lines | 33 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 27 | class Tiqr_UserSecretStorage_Encryption_Dummy implements Tiqr_UserSecretStorage_Encryption_Interface |
||
| 28 | { |
||
| 29 | /** |
||
| 30 | * Construct an encryption instance. |
||
| 31 | * |
||
| 32 | * @param $config The configuration that a specific configuration class may use. |
||
| 33 | */ |
||
| 34 | 18 | public function __construct($config) |
|
| 36 | 18 | } |
|
| 37 | |||
| 38 | /** |
||
| 39 | * Encrypts the given data. |
||
| 40 | * |
||
| 41 | * @param String $data Data to encrypt. |
||
| 42 | * |
||
| 43 | * @return encrypted data |
||
|
|
|||
| 44 | */ |
||
| 45 | 2 | public function encrypt($data) |
|
| 46 | { |
||
| 47 | 2 | return $data; |
|
| 48 | } |
||
| 49 | |||
| 50 | /** |
||
| 51 | * Decrypts the given data. |
||
| 52 | * |
||
| 53 | * @param String $data Data to decrypt. |
||
| 54 | * |
||
| 55 | * @return decrypted data |
||
| 56 | */ |
||
| 57 | 2 | public function decrypt($data) |
|
| 60 | } |
||
| 61 | } |
||
| 62 |
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