Mongolid\Model\Attributes::hasMutatorMethod PHP Метод

hasMutatorMethod() защищенный Метод

Verify if model has a mutator method defined.
protected hasMutatorMethod ( mixed $key, mixed $prefix ) : boolean
$key mixed Attribute name.
$prefix mixed Method prefix to be used.
Результат boolean
    protected function hasMutatorMethod($key, $prefix)
    {
        $method = $this->buildMutatorMethod($key, $prefix);
        return method_exists($this, $method);
    }