diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2013-09-24 10:37:58 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2013-09-24 10:37:58 +0200 |
commit | cd2421c7ee04e6d46481a1d0ae36387757b204fe (patch) | |
tree | 1279058d58924d077e138f9e90508e0699f6460f /lib | |
parent | 6aeb0a99daf28ecb68b010d96369636a99ad77be (diff) | |
download | nextcloud-server-cd2421c7ee04e6d46481a1d0ae36387757b204fe.tar.gz nextcloud-server-cd2421c7ee04e6d46481a1d0ae36387757b204fe.zip |
adding PHPDoc comments to getBackend
ensure getChildren() is called on an instance of Share_Backend_Collection
Diffstat (limited to 'lib')
-rw-r--r-- | lib/public/share.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/public/share.php b/lib/public/share.php index 10922965ea8..41f5ccbf40d 100644 --- a/lib/public/share.php +++ b/lib/public/share.php @@ -745,8 +745,8 @@ class Share { /** * @brief Get the backend class for the specified item type - * @param string Item type - * @return Sharing backend object + * @param string $itemType + * @return Share_Backend */ public static function getBackend($itemType) { if (isset(self::$backends[$itemType])) { |