PrepareEncryptionTask: fix wrongly-specified nullability of serverPrivateKey

This commit is contained in:
Dylan K. Taylor 2020-05-06 13:29:58 +01:00
parent b4606a4cd0
commit ff53ddd3ad

View File

@ -36,8 +36,8 @@ class PrepareEncryptionTask extends AsyncTask{
/** @var PrivateKeyInterface|null */
private static $SERVER_PRIVATE_KEY = null;
/** @var PrivateKeyInterface|null */
private $serverPrivateKey = null;
/** @var PrivateKeyInterface */
private $serverPrivateKey;
/** @var string|null */
private $aesKey = null;