mirror of
https://github.com/Icinga/icingaweb2.git
synced 2026-04-21 06:08:54 -04:00
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 {};
|