Devise\Pages\Interpreter\TagManager::fetchMappingsForModelField PHP Метод

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

Finds the mappings for this model type This allows us to know if we have created enough DvsModelField entries in the database
protected fetchMappingsForModelField ( array $tag ) : array
$tag array
Результат array
    protected function fetchMappingsForModelField($tag)
    {
        $field = $this->DvsModelField->newInstance();
        $field->model_id = $tag['key'];
        $field->model_type = $tag['type'];
        return array_keys($field->picks);
    }