You are here

public function ConfigName::getFullName in Update helper 8

Same name and namespace in other branches
  1. 2.x src/ConfigName.php \Drupal\update_helper\ConfigName::getFullName()

Get full configuration name.

Return value

string Returns full configuration name.

File

src/ConfigName.php, line 151

Class

ConfigName
Configuration name class for easier handling of configuration references.

Namespace

Drupal\update_helper

Code

public function getFullName() {
  return $this
    ->generateFullName($this->type, $this->name);
}