Issue #2527708 by joshi.rohit100, chx, jhodgdon, alexpott: Improve documentation for TypedConfigManagerInterface
parent
92e36b3c54
commit
416a63f057
|
@ -17,7 +17,7 @@ use Drupal\Core\Extension\ModuleHandlerInterface;
|
|||
use Drupal\Core\TypedData\TypedDataManager;
|
||||
|
||||
/**
|
||||
* Manages config type plugins.
|
||||
* Manages config schema type plugins.
|
||||
*/
|
||||
class TypedConfigManager extends TypedDataManager implements TypedConfigManagerInterface {
|
||||
|
||||
|
|
|
@ -12,9 +12,12 @@ use Drupal\Component\Plugin\PluginManagerInterface;
|
|||
use Drupal\Core\TypedData\DataDefinitionInterface;
|
||||
|
||||
/**
|
||||
* Defines an interface for typed configuration manager.
|
||||
* Defines an interface for managing config schema type plugins.
|
||||
*
|
||||
* @package Drupal\Core\Config
|
||||
* @see \Drupal\Core\Config\TypedConfigManager
|
||||
* @see \Drupal\Core\Config\Schema\ConfigSchemaDiscovery
|
||||
* @see hook_config_schema_info_alter()
|
||||
* @see https://www.drupal.org/node/1905070
|
||||
*/
|
||||
Interface TypedConfigManagerInterface extends PluginManagerInterface, CachedDiscoveryInterface {
|
||||
|
||||
|
|
Loading…
Reference in New Issue