2014-04-15 17:43:45 +02:00
|
|
|
<?php
|
2015-02-03 16:27:59 +01:00
|
|
|
/* Icinga Web 2 | (c) 2013-2015 Icinga Development Team | http://www.gnu.org/licenses/gpl-2.0.txt */
|
2014-04-15 17:43:45 +02:00
|
|
|
|
|
|
|
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();
|
|
|
|
}
|