Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Calviño Sánchez <danxuliu@gmail.com>2019-10-30 16:26:37 +0300
committerDaniel Calviño Sánchez <danxuliu@gmail.com>2019-10-30 16:26:37 +0300
commitea55f8eeddd49b86e5547bc8389aa8942d33d021 (patch)
tree3e0b201480812cedfc034c8e53a0d049e3184fc2 /lib/public/Share
parent8085ca4cc4e0d38e33b623613b36ec0fe03e5a9f (diff)
fixup! Get all shares as iterable
Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
Diffstat (limited to 'lib/public/Share')
-rw-r--r--lib/public/Share/IManager.php1
-rw-r--r--lib/public/Share/IShareProvider.php1
2 files changed, 2 insertions, 0 deletions
diff --git a/lib/public/Share/IManager.php b/lib/public/Share/IManager.php
index 0c47eb730fd..8bb7291d6ba 100644
--- a/lib/public/Share/IManager.php
+++ b/lib/public/Share/IManager.php
@@ -393,6 +393,7 @@ interface IManager {
* be fully itterated.
*
* @return iterable
+ * @since 18.0.0
*/
public function getAllShares(): iterable;
diff --git a/lib/public/Share/IShareProvider.php b/lib/public/Share/IShareProvider.php
index da29a7b98aa..c8815928269 100644
--- a/lib/public/Share/IShareProvider.php
+++ b/lib/public/Share/IShareProvider.php
@@ -223,6 +223,7 @@ interface IShareProvider {
* overhead
*
* @return iterable
+ * @since 18.0.0
*/
public function getAllShares(): iterable;
}