mirror of
https://github.com/YunoHost-Apps/kanboard_ynh.git
synced 2024-09-03 19:36:17 +02:00
21 lines
367 B
PHP
21 lines
367 B
PHP
<?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);
|
|
}
|