Add user backend provider system
This commit is contained in:
21
app/Core/User/UserBackendProviderInterface.php
Normal file
21
app/Core/User/UserBackendProviderInterface.php
Normal file
@@ -0,0 +1,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);
|
||||
}
|
||||
Reference in New Issue
Block a user