Livestatus\ResponseRow: initial dummy implementation
This commit is contained in:
parent
17c8453c1c
commit
efd395e12a
|
@ -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…
Reference in New Issue