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

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

Create mutator method pattern.
protected buildMutatorMethod ( mixed $key, mixed $prefix ) : string
$key mixed Attribute name.
$prefix mixed Method prefix to be used.
Результат string
    protected function buildMutatorMethod($key, $prefix)
    {
        return $prefix . ucfirst($key) . 'Attribute';
    }