lithium\template\view\adapter\File::offsetSet PHP Method

offsetSet() public method

Part of ArrayAccess. $file['bar'] = 'baz'; $file->offsetSet('bar', 'baz');
public offsetSet ( string $offset, mixed $value ) : void
$offset string Key / variable name to check.
$value mixed Value you wish to set to `$offset`.
return void
    public function offsetSet($offset, $value)
    {
        $this->_data[$offset] = $value;
    }