diff options
author | Lukas Reschke <lukas@owncloud.com> | 2015-12-08 09:45:20 +0100 |
---|---|---|
committer | Lukas Reschke <lukas@owncloud.com> | 2015-12-08 09:45:20 +0100 |
commit | f55a56ff6cea0f411b864549693e4783bcac69bb (patch) | |
tree | d0fc34f87f7c335c2f76616fb6f287142c7dddd0 /apps/files_external | |
parent | d6276faff6fafe88f59953cb61f9411038be23e9 (diff) | |
download | nextcloud-server-f55a56ff6cea0f411b864549693e4783bcac69bb.tar.gz nextcloud-server-f55a56ff6cea0f411b864549693e4783bcac69bb.zip |
Use proper PHPDoc reference
Diffstat (limited to 'apps/files_external')
-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; |