Adds type hinting for scalar types in ICrypto->decrypt
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
This commit is contained in:
parent
16f4d71efd
commit
ca28df6fcc
2 changed files with 2 additions and 2 deletions
|
@ -108,7 +108,7 @@ class Crypto implements ICrypto {
|
|||
* @return string plaintext
|
||||
* @throws \Exception If the HMAC does not match
|
||||
*/
|
||||
public function decrypt($authenticatedCiphertext, $password = '') {
|
||||
public function decrypt(string $authenticatedCiphertext, string $password = ''): string {
|
||||
if($password === '') {
|
||||
$password = $this->config->getSystemValue('secret');
|
||||
}
|
||||
|
|
|
@ -61,5 +61,5 @@ interface ICrypto {
|
|||
* @throws \Exception If the HMAC does not match
|
||||
* @since 8.0.0
|
||||
*/
|
||||
public function decrypt($authenticatedCiphertext, $password = '');
|
||||
public function decrypt(string $authenticatedCiphertext, string $password = ''): string;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue