summaryrefslogtreecommitdiff
path: root/app/Core/Group/GroupBackendProviderInterface.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/Core/Group/GroupBackendProviderInterface.php')
-rw-r--r--app/Core/Group/GroupBackendProviderInterface.php21
1 files changed, 21 insertions, 0 deletions
diff --git a/app/Core/Group/GroupBackendProviderInterface.php b/app/Core/Group/GroupBackendProviderInterface.php
new file mode 100644
index 00000000..74c5cb03
--- /dev/null
+++ b/app/Core/Group/GroupBackendProviderInterface.php
@@ -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);
+}