diff options
author | Lukas Reschke <lukas@statuscode.ch> | 2017-07-19 19:57:52 +0200 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2017-08-01 08:20:16 +0200 |
commit | 6fb84ebb71194fa74f7bc7f75b1b6ead0f550686 (patch) | |
tree | ecf879429e4d2be2ee49618fd1b59aab0dda697c /lib | |
parent | dfd8125aeb4a95df20041890dcffd50ba2592fee (diff) | |
download | nextcloud-server-6fb84ebb71194fa74f7bc7f75b1b6ead0f550686.tar.gz nextcloud-server-6fb84ebb71194fa74f7bc7f75b1b6ead0f550686.zip |
null is a valid parameter
Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/private/Security/CertificateManager.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/private/Security/CertificateManager.php b/lib/private/Security/CertificateManager.php index 58c44b88ba6..ea7b045c205 100644 --- a/lib/private/Security/CertificateManager.php +++ b/lib/private/Security/CertificateManager.php @@ -209,7 +209,7 @@ class CertificateManager implements ICertificateManager { /** * Get the path to the certificate bundle for this user * - * @param string $uid (optional) user to get the certificate bundle for, use `null` to get the system bundle + * @param string|null $uid (optional) user to get the certificate bundle for, use `null` to get the system bundle * @return string */ public function getCertificateBundle($uid = '') { @@ -241,7 +241,7 @@ class CertificateManager implements ICertificateManager { } /** - * @param string $uid (optional) user to get the certificate path for, use `null` to get the system path + * @param string|null $uid (optional) user to get the certificate path for, use `null` to get the system path * @return string */ private function getPathToCertificates($uid = '') { |