Rewrite of the authentication and authorization system
This commit is contained in:
21
app/Core/Group/GroupBackendProviderInterface.php
Normal file
21
app/Core/Group/GroupBackendProviderInterface.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace Kanboard\Core\Group;
|
||||
|
||||
/**
|
||||
* Group Backend Provider Interface
|
||||
*
|
||||
* @package group
|
||||
* @author Frederic Guillot
|
||||
*/
|
||||
interface GroupBackendProviderInterface
|
||||
{
|
||||
/**
|
||||
* Find a group from a search query
|
||||
*
|
||||
* @access public
|
||||
* @param string $input
|
||||
* @return GroupProviderInterface[]
|
||||
*/
|
||||
public function find($input);
|
||||
}
|
||||
Reference in New Issue
Block a user