1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- <?php
- namespace OCP\Collaboration\Collaborators;
- interface ISearchResult {
-
- public function addResultSet(SearchResultType $type, array $matches, ?array $exactMatches = null);
-
- public function hasResult(SearchResultType $type, $collaboratorId);
-
- public function removeCollaboratorResult(SearchResultType $type, string $collaboratorId): bool;
-
- public function unsetResult(SearchResultType $type);
-
- public function markExactIdMatch(SearchResultType $type);
-
- public function hasExactIdMatch(SearchResultType $type);
-
- public function asArray();
- }
|