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

github.com/nextcloud/circles.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'lib/ISearch.php')
-rw-r--r--lib/ISearch.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/ISearch.php b/lib/ISearch.php
index 3300bbe5..e93ca21b 100644
--- a/lib/ISearch.php
+++ b/lib/ISearch.php
@@ -31,7 +31,7 @@ declare(strict_types=1);
namespace OCA\Circles;
-use OCA\Circles\Model\FederatedUser;
+use OCA\Circles\Model\SearchResult;
/**
* Interface ISearch
@@ -43,7 +43,7 @@ interface ISearch {
/**
* @param string $needle
*
- * @return FederatedUser[]
+ * @return list<SearchResult|IFederatedUser>
*/
public function search(string $needle): array;
}