mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-04-08 17:15:08 +02:00
26 lines
500 B
PHP
Executable File
26 lines
500 B
PHP
Executable File
<?php
|
|
// {{{ICINGA_LICENSE_HEADER}}}
|
|
// {{{ICINGA_LICENSE_HEADER}}}
|
|
|
|
namespace Icinga\Protocol\Statusdat\Query;
|
|
|
|
/**
|
|
* Class IQueryPart
|
|
* @package Icinga\Protocol\Statusdat\Query
|
|
*/
|
|
interface IQueryPart
|
|
{
|
|
/**
|
|
* @param null $expression
|
|
* @param array $value
|
|
*/
|
|
public function __construct($expression = null, &$value = array());
|
|
|
|
/**
|
|
* @param array $base
|
|
* @param null $idx
|
|
* @return mixed
|
|
*/
|
|
public function filter(array &$base, &$idx = null);
|
|
}
|