mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-06-03 05:20:11 +02:00
This interface is intended to be used within the data views and monitoring controllers. The monitoring list and show controllers should only query data views instead of the actual query. Thus a data view is required to implement the QueryInterface, which will be changed later. The name is not final because it somehow conflicts with the Queryable interface which is also marked as work in progress.
8 lines
149 B
PHP
8 lines
149 B
PHP
<?php
|
|
|
|
namespace Icinga\Data;
|
|
|
|
use Countable;
|
|
|
|
interface QueryInterface extends Browsable, Fetchable, Filterable, Limitable, Sortable, Countable {};
|