TypedConfigManager::getDiscovery

protected TypedConfigManager::getDiscovery()

Gets the plugin discovery.

Return value

\Drupal\Component\Plugin\Discovery\DiscoveryInterface

Overrides DefaultPluginManager::getDiscovery

File

core/lib/Drupal/Core/Config/TypedConfigManager.php, line 59

Class

TypedConfigManager
Manages config schema type plugins.

Namespace

Drupal\Core\Config

Code

1
2
3
4
5
6
protected function getDiscovery() {
  if (!isset($this->discovery)) {
    $this->discovery = new ConfigSchemaDiscovery($this->schemaStorage);
  }
  return $this->discovery;
}
doc_Drupal
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.