mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-05-20 06:30:10 +02:00
This reverts commit ca5ef2da2bb9ce21701a32a668c149c0608fc8bb. A perfect example of a change as a result of being mentally deranged.
9 lines
206 B
PHP
9 lines
206 B
PHP
<?php
|
|
/* Icinga Web 2 | (c) 2013-2015 Icinga Development Team | GPLv2+ */
|
|
|
|
namespace Icinga\Data;
|
|
|
|
use Countable;
|
|
|
|
interface QueryInterface extends Fetchable, Filterable, Limitable, Sortable, Countable {};
|