Browse Source
missing PHP doc for public interfaces
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
pull/6328/head
Arthur Schiwon
8 years ago
No known key found for this signature in database
GPG Key ID: 7424F1874854DF23
3 changed files with
18 additions and
2 deletions
-
lib/public/Collaboration/Collaborators/ISearch.php
-
lib/public/Collaboration/Collaborators/ISearchPlugin.php
-
lib/public/Collaboration/Collaborators/ISearchResult.php
|
|
|
@ -23,6 +23,12 @@ |
|
|
|
|
|
|
|
namespace OCP\Collaboration\Collaborators; |
|
|
|
|
|
|
|
/** |
|
|
|
* Interface ISearch |
|
|
|
* |
|
|
|
* @package OCP\Collaboration\Collaborators |
|
|
|
* @since 13.0.0 |
|
|
|
*/ |
|
|
|
interface ISearch { |
|
|
|
/** |
|
|
|
* @param string $search |
|
|
|
|
|
|
|
@ -23,7 +23,12 @@ |
|
|
|
|
|
|
|
namespace OCP\Collaboration\Collaborators; |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
* Interface ISearchPlugin |
|
|
|
* |
|
|
|
* @package OCP\Collaboration\Collaborators |
|
|
|
* @since 13.0.0 |
|
|
|
*/ |
|
|
|
interface ISearchPlugin { |
|
|
|
/** |
|
|
|
* @param string $search |
|
|
|
|
|
|
|
@ -23,7 +23,12 @@ |
|
|
|
|
|
|
|
namespace OCP\Collaboration\Collaborators; |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
* Interface ISearchResult |
|
|
|
* |
|
|
|
* @package OCP\Collaboration\Collaborators |
|
|
|
* @since 13.0.0 |
|
|
|
*/ |
|
|
|
interface ISearchResult { |
|
|
|
/** |
|
|
|
* @param string $type one of: users, groups, remotes, email, circles, lookup |
|
|
|
|