mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-07-26 23:34:08 +02:00
Livestatus\ResponseRow: initial dummy implementation
This commit is contained in:
parent
17c8453c1c
commit
efd395e12a
18
library/Icinga/Protocol/Livestatus/ResponseRow.php
Normal file
18
library/Icinga/Protocol/Livestatus/ResponseRow.php
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Icinga\Protocol\Livestatus;
|
||||||
|
|
||||||
|
use SplFixedArray;
|
||||||
|
|
||||||
|
class ResponseRow
|
||||||
|
{
|
||||||
|
protected $raw;
|
||||||
|
|
||||||
|
protected $query;
|
||||||
|
|
||||||
|
public function __construct(SplFixedArray $raw, Query $query)
|
||||||
|
{
|
||||||
|
$this->raw = $raw;
|
||||||
|
$this->query = $query;
|
||||||
|
}
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user