CrudKit\Data\ArrayDataProvider::setRow PHP Method

setRow() public method

public setRow ( $id = null, array $values = [] )
$values array
    public function setRow($id = null, array $values = [])
    {
        $errors = $this->validateRow($values);
        if (!empty($errors)) {
            return false;
        }
        $this->data[(int) $id] = $values;
        return true;
    }