summaryrefslogtreecommitdiffstats
path: root/library/Icinga/Data/Selectable.php
diff options
context:
space:
mode:
Diffstat (limited to 'library/Icinga/Data/Selectable.php')
-rw-r--r--library/Icinga/Data/Selectable.php17
1 files changed, 17 insertions, 0 deletions
diff --git a/library/Icinga/Data/Selectable.php b/library/Icinga/Data/Selectable.php
new file mode 100644
index 0000000..ace4e79
--- /dev/null
+++ b/library/Icinga/Data/Selectable.php
@@ -0,0 +1,17 @@
+<?php
+/* Icinga Web 2 | (c) 2014 Icinga Development Team | GPLv2+ */
+
+namespace Icinga\Data;
+
+/**
+ * Interface for classes providing a data source to fetch data from
+ */
+interface Selectable
+{
+ /**
+ * Provide a data source to fetch data from
+ *
+ * @return Queryable
+ */
+ public function select();
+}