Neos\Flow\Persistence\Doctrine\QueryResult::offsetSet PHP 메소드

offsetSet() 공개 메소드

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
리턴 void
    public function offsetSet($offset, $value)
    {
        $this->initialize();
        $this->rows[$offset] = $value;
    }