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

hasGetMutator() 공개 메소드

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