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

offsetExists() public method

Part of ArrayAccess. isset($file['bar']); $file->offsetExists('bar');
public offsetExists ( string $offset ) : boolean
$offset string Key / variable name to check.
return boolean Returns `true` if the value is set, otherwise `false`.
    public function offsetExists($offset)
    {
        return array_key_exists($offset, $this->_data);
    }