mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-07-08 14:34:29 +02:00
11 lines
204 B
PHP
Executable File
11 lines
204 B
PHP
Executable File
<?php
|
|
|
|
namespace Icinga\Protocol\Statusdat\Query;
|
|
|
|
|
|
interface IQueryPart
|
|
{
|
|
public function __construct($expression = null,&$value = array());
|
|
public function filter(array &$base, &$idx=null);
|
|
}
|