diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2017-08-01 09:25:09 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-01 09:25:09 +0200 |
commit | 2b895e0c60b6f283cb26b2ca0e18a05497103bc2 (patch) | |
tree | 85e00c12d8a0e507d46c11ec4cba67fc31aae67e /lib/public/Encryption | |
parent | 456392e627de3aad19c8188974a4972cf4e274db (diff) | |
parent | 2fae696d35d221a9fb25b90b90b32c35c81fdd45 (diff) | |
download | nextcloud-server-2b895e0c60b6f283cb26b2ca0e18a05497103bc2.tar.gz nextcloud-server-2b895e0c60b6f283cb26b2ca0e18a05497103bc2.zip |
Merge pull request #5847 from nextcloud/make-phan-config-more-strict-2
Phan fixes
Diffstat (limited to 'lib/public/Encryption')
-rw-r--r-- | lib/public/Encryption/Exceptions/GenericEncryptionException.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/public/Encryption/Exceptions/GenericEncryptionException.php b/lib/public/Encryption/Exceptions/GenericEncryptionException.php index ac880c43067..7515d9c368d 100644 --- a/lib/public/Encryption/Exceptions/GenericEncryptionException.php +++ b/lib/public/Encryption/Exceptions/GenericEncryptionException.php @@ -39,7 +39,7 @@ class GenericEncryptionException extends HintException { * @param string $message * @param string $hint * @param int $code - * @param \Exception $previous + * @param \Exception|null $previous * @since 8.1.0 */ public function __construct($message = '', $hint = '', $code = 0, \Exception $previous = null) { |