diff options
author | Lukas Reschke <lukas@owncloud.com> | 2015-04-09 14:06:55 +0200 |
---|---|---|
committer | Lukas Reschke <lukas@owncloud.com> | 2015-04-09 14:09:09 +0200 |
commit | ec69f2838c5d06bd827c3ad79e3561b78a0d43a2 (patch) | |
tree | dce14fa6a7890584b7f9374be8d3b489f7739542 /lib/public/encryption/exceptions/genericencryptionexception.php | |
parent | 4f97cb9d1bace32c0ebda1f946e147631309a01f (diff) | |
download | nextcloud-server-ec69f2838c5d06bd827c3ad79e3561b78a0d43a2.tar.gz nextcloud-server-ec69f2838c5d06bd827c3ad79e3561b78a0d43a2.zip |
Fix typos and some other adjustments
Diffstat (limited to 'lib/public/encryption/exceptions/genericencryptionexception.php')
-rw-r--r-- | lib/public/encryption/exceptions/genericencryptionexception.php | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/lib/public/encryption/exceptions/genericencryptionexception.php b/lib/public/encryption/exceptions/genericencryptionexception.php index 59ab25fd61d..c488d4df162 100644 --- a/lib/public/encryption/exceptions/genericencryptionexception.php +++ b/lib/public/encryption/exceptions/genericencryptionexception.php @@ -25,7 +25,12 @@ namespace OCP\Encryption\Exceptions; class GenericEncryptionException extends \Exception { - public function __construct($message = "", $code = 0, \Exception $previous = null) { + /** + * @param string $message + * @param int $code + * @param \Exception $previous + */ + public function __construct($message = '', $code = 0, \Exception $previous = null) { if (empty($message)) { $message = 'Unspecified encryption exception'; } |