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