mirror of
https://github.com/Icinga/icingaweb2.git
synced 2026-04-24 23:56:56 -04:00
11 lines
204 B
PHP
11 lines
204 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace Icinga\Protocol\Statusdat\Query;
|
||
|
|
|
||
|
|
|
||
|
|
interface IQueryPart
|
||
|
|
{
|
||
|
|
public function __construct($expression = null,&$value = array());
|
||
|
|
public function filter(array &$base, &$idx=null);
|
||
|
|
}
|