LMongo\Eloquent\Model::hasSetMutator PHP Method

hasSetMutator() public method

Determine if a set mutator exists for an attribute.
public hasSetMutator ( string $key ) : boolean
$key string
return boolean
    public function hasSetMutator($key)
    {
        return method_exists($this, 'set' . studly_case($key) . 'Attribute');
    }
Model