2014-04-15 16:23:17 +02:00
|
|
|
<?php
|
2014-07-15 13:39:22 +02:00
|
|
|
// {{{ICINGA_LICENSE_HEADER}}}
|
|
|
|
// {{{ICINGA_LICENSE_HEADER}}}
|
2014-04-15 16:23:17 +02:00
|
|
|
|
|
|
|
namespace Icinga\Data;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Interface for specifying data sources
|
|
|
|
*/
|
|
|
|
interface Queryable
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Set the target and fields to query
|
|
|
|
*
|
|
|
|
* @param string $target
|
|
|
|
* @param array $fields
|
|
|
|
*
|
|
|
|
* @return Fetchable
|
|
|
|
*/
|
|
|
|
public function from($target, array $fields = null);
|
|
|
|
}
|