LMongo\Eloquent\Model::hasSetMutator PHP 메소드

hasSetMutator() 공개 메소드

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