Neos\Flow\Persistence\Doctrine\QueryResult::offsetSet PHP Method

offsetSet() public method

This method has no effect on the persisted objects but only on the result set
public offsetSet ( mixed $offset, mixed $value ) : void
$offset mixed
$value mixed
return void
    public function offsetSet($offset, $value)
    {
        $this->initialize();
        $this->rows[$offset] = $value;
    }