Flow\JSONPath\JSONPath::offsetSet PHP 메소드

offsetSet() 공개 메소드

public offsetSet ( $offset, $value )
    public function offsetSet($offset, $value)
    {
        if ($offset === null) {
            $this->data[] = $value;
        } else {
            AccessHelper::setValue($this->data, $offset, $value);
        }
    }