missing PHP doc for public interfaces
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
This commit is contained in:
parent
88db314f0c
commit
579c1476a3
3 changed files with 18 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue