diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2015-12-08 10:04:41 +0100 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2015-12-08 10:04:41 +0100 |
commit | c93664468cf206f3fab7b7d77bcc911257a86d5e (patch) | |
tree | d0fc34f87f7c335c2f76616fb6f287142c7dddd0 | |
parent | d6276faff6fafe88f59953cb61f9411038be23e9 (diff) | |
parent | f55a56ff6cea0f411b864549693e4783bcac69bb (diff) | |
download | nextcloud-server-c93664468cf206f3fab7b7d77bcc911257a86d5e.tar.gz nextcloud-server-c93664468cf206f3fab7b7d77bcc911257a86d5e.zip |
Merge pull request #21028 from owncloud/fix-php-doc-for-storage-config
Use proper PHPDoc reference
-rw-r--r-- | apps/files_external/lib/storageconfig.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/files_external/lib/storageconfig.php b/apps/files_external/lib/storageconfig.php index 97e0386be73..49a40a9a5d7 100644 --- a/apps/files_external/lib/storageconfig.php +++ b/apps/files_external/lib/storageconfig.php @@ -163,7 +163,7 @@ class StorageConfig implements \JsonSerializable { } /** - * @param Backend + * @param Backend $backend */ public function setBackend(Backend $backend) { $this->backend= $backend; @@ -177,7 +177,7 @@ class StorageConfig implements \JsonSerializable { } /** - * @param AuthMechanism + * @param AuthMechanism $authMechanism */ public function setAuthMechanism(AuthMechanism $authMechanism) { $this->authMechanism = $authMechanism; |