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; } |
Please login to continue.