20 lines
338 B
PHP
20 lines
338 B
PHP
<?php
|
|
/* Icinga Web 2 | (c) 2013-2015 Icinga Development Team | GPLv2+ */
|
|
|
|
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;
|
|
}
|
|
}
|