Skip to content

Commit

Permalink
Livestatus\ResponseRow: initial dummy implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas-Gelf committed Nov 16, 2014
1 parent 17c8453 commit efd395e
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions library/Icinga/Protocol/Livestatus/ResponseRow.php
@@ -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;
}
}

0 comments on commit efd395e

Please sign in to comment.