icingaweb2/library/Icinga/Data/QueryInterface.php
Thomas Gelf 727a2d7141 Paginator: relax requirements to Paginatable
* we need no full query interface here
* introduced new interface "Paginatable"

fixes #9483
2015-07-23 13:48:49 +02:00

7 lines
181 B
PHP

<?php
/* Icinga Web 2 | (c) 2013-2015 Icinga Development Team | GPLv2+ */
namespace Icinga\Data;
interface QueryInterface extends Fetchable, Filterable, Paginatable, Sortable {};