lithium\data\Schema::offsetSet PHP Method

offsetSet() public method

public offsetSet ( $key, $value )
    public function offsetSet($key, $value)
    {
        if ($this->_locked) {
            throw new RuntimeException("Schema cannot be modified.");
        }
        $this->_fields[$key] = $value;
    }