summaryrefslogtreecommitdiffstats
path: root/apps/encryption/lib/Exceptions/PrivateKeyMissingException.php
diff options
context:
space:
mode:
Diffstat (limited to 'apps/encryption/lib/Exceptions/PrivateKeyMissingException.php')
-rw-r--r--apps/encryption/lib/Exceptions/PrivateKeyMissingException.php3
1 files changed, 1 insertions, 2 deletions
diff --git a/apps/encryption/lib/Exceptions/PrivateKeyMissingException.php b/apps/encryption/lib/Exceptions/PrivateKeyMissingException.php
index f7014fa2701..4d14b191ddc 100644
--- a/apps/encryption/lib/Exceptions/PrivateKeyMissingException.php
+++ b/apps/encryption/lib/Exceptions/PrivateKeyMissingException.php
@@ -32,10 +32,9 @@ class PrivateKeyMissingException extends GenericEncryptionException {
* @param string $userId
*/
public function __construct($userId) {
- if(empty($userId)) {
+ if (empty($userId)) {
$userId = "<no-user-id-given>";
}
parent::__construct("Private Key missing for user: $userId");
}
-
}