summaryrefslogtreecommitdiffstats
path: root/lib/public
diff options
context:
space:
mode:
Diffstat (limited to 'lib/public')
-rw-r--r--lib/public/OCS/IDiscoveryService.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/public/OCS/IDiscoveryService.php b/lib/public/OCS/IDiscoveryService.php
index 9a86e2a4410..704840cf7b5 100644
--- a/lib/public/OCS/IDiscoveryService.php
+++ b/lib/public/OCS/IDiscoveryService.php
@@ -44,8 +44,9 @@ interface IDiscoveryService {
*
* @param string $remote
* @param string $service the service you want to discover
+ * @param bool $skipCache We won't check if the data is in the cache. This is usefull if a background job is updating the status
* @return array
*/
- public function discover(string $remote, string $service): array;
+ public function discover(string $remote, string $service, bool $skipCache = false): array;
}