Revert "Merge Queryable into QueryInterface"
This reverts commit ca5ef2da2b
.
A perfect example of a change as a result of being mentally deranged.
This commit is contained in:
parent
9eaa231c4f
commit
130fea3146
|
@ -5,4 +5,4 @@ namespace Icinga\Data;
|
||||||
|
|
||||||
use Countable;
|
use Countable;
|
||||||
|
|
||||||
interface QueryInterface extends Queryable, Browsable, Fetchable, Filterable, Limitable, Sortable, Countable {};
|
interface QueryInterface extends Browsable, Fetchable, Filterable, Limitable, Sortable, Countable {};
|
||||||
|
|
|
@ -3,13 +3,14 @@
|
||||||
|
|
||||||
namespace Icinga\Data;
|
namespace Icinga\Data;
|
||||||
|
|
||||||
use Zend_Paginator;
|
|
||||||
use Icinga\Application\Icinga;
|
use Icinga\Application\Icinga;
|
||||||
use Icinga\Data\Filter\Filter;
|
use Icinga\Data\Filter\Filter;
|
||||||
use Icinga\Exception\IcingaException;
|
|
||||||
use Icinga\Web\Paginator\Adapter\QueryAdapter;
|
use Icinga\Web\Paginator\Adapter\QueryAdapter;
|
||||||
|
use Zend_Paginator;
|
||||||
|
use Exception;
|
||||||
|
use Icinga\Exception\IcingaException;
|
||||||
|
|
||||||
class SimpleQuery implements QueryInterface
|
class SimpleQuery implements QueryInterface, Queryable
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* Query data source
|
* Query data source
|
||||||
|
|
Loading…
Reference in New Issue