File size: 375 Bytes
e4f4821
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?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);
}