mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-05-10 09:40:11 +02:00
10 lines
211 B
PHP
10 lines
211 B
PHP
<?php
|
|
// {{{ICINGA_LICENSE_HEADER}}}
|
|
// {{{ICINGA_LICENSE_HEADER}}}
|
|
|
|
namespace Icinga\Data;
|
|
|
|
use Countable;
|
|
|
|
interface QueryInterface extends Browsable, Fetchable, Filterable, Limitable, Sortable, Countable {};
|