You are here

public function ConfigInspectorManager::getConfigSchema in Configuration Inspector 8

Provides configuration schema.

Parameters

string $name: A string config key.

Return value

\Drupal\Core\TypedData\TraversableTypedDataInterface Typed configuration element.

File

src/ConfigInspectorManager.php, line 97

Class

ConfigInspectorManager
Manages plugins for configuration translation mappers.

Namespace

Drupal\config_inspector

Code

public function getConfigSchema($name) {
  return $this->typedConfigManager
    ->get($name);
}