mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-07-24 14:24:41 +02:00
Merge Queryable into QueryInterface
A *Query*Interface describes an object as being queryable, now. refs #8826
This commit is contained in:
parent
d09ea2845d
commit
ca5ef2da2b
@ -5,4 +5,4 @@ namespace Icinga\Data;
|
||||
|
||||
use Countable;
|
||||
|
||||
interface QueryInterface extends Browsable, Fetchable, Filterable, Limitable, Sortable, Countable {};
|
||||
interface QueryInterface extends Queryable, Browsable, Fetchable, Filterable, Limitable, Sortable, Countable {};
|
||||
|
@ -3,14 +3,13 @@
|
||||
|
||||
namespace Icinga\Data;
|
||||
|
||||
use Zend_Paginator;
|
||||
use Icinga\Application\Icinga;
|
||||
use Icinga\Data\Filter\Filter;
|
||||
use Icinga\Web\Paginator\Adapter\QueryAdapter;
|
||||
use Zend_Paginator;
|
||||
use Exception;
|
||||
use Icinga\Exception\IcingaException;
|
||||
use Icinga\Web\Paginator\Adapter\QueryAdapter;
|
||||
|
||||
class SimpleQuery implements QueryInterface, Queryable
|
||||
class SimpleQuery implements QueryInterface
|
||||
{
|
||||
/**
|
||||
* Query data source
|
||||
|
Loading…
x
Reference in New Issue
Block a user