2014-11-16 16:22:10 +01:00
|
|
|
<?php
|
2016-02-08 15:41:00 +01:00
|
|
|
/* Icinga Web 2 | (c) 2014 Icinga Development Team | GPLv2+ */
|
2014-11-16 16:22:10 +01:00
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|