Livestatus\ResponseRow: initial dummy implementation

This commit is contained in:
Thomas Gelf 2014-11-16 16:22:10 +01:00
parent 17c8453c1c
commit efd395e12a
1 changed files with 18 additions and 0 deletions

View 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;
}
}