blob: 5f8cab47af9fd5c9afa0c9489b6b0ef054cf140d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<?php
namespace Kanboard\Core\User;
/**
* User Backend Provider Interface
*
* @package Kanboard\Core\User
* @author Frederic Guillot
*/
interface UserBackendProviderInterface
{
/**
* Find a user from a search query
*
* @access public
* @param string $input
* @return UserProviderInterface[]
*/
public function find($input);
}
|