Magic::offsetexists PHP Method

offsetexists() public method

Convenience method for checking property value
public offsetexists ( $key ) : mixed
$key string
return mixed
    function offsetexists($key)
    {
        return Base::instance()->visible($this, $key) ? isset($this->{$key}) : $this->exists($key);
    }