Mongolid\Model\Attributes::__isset PHP Method

__isset() public method

Determine if an attribute exists on the model.
public __isset ( mixed $key ) : boolean
$key mixed Attribute name.
return boolean
    public function __isset($key)
    {
        return isset($this->attributes[$key]);
    }