public function ConfigProviderConfigInstaller::checkConfigurationToInstall in Configuration Provider 8
Same name and namespace in other branches
- 8.2 src/ProxyClass/ConfigProviderConfigInstaller.php \Drupal\config_provider\ProxyClass\ConfigProviderConfigInstaller::checkConfigurationToInstall()
Checks the configuration that will be installed for an extension.
Parameters
string $type: Type of extension to install.
string $name: Name of extension to install.
Throws
\Drupal\Core\Config\UnmetDependenciesException
\Drupal\Core\Config\PreExistingConfigException
Overrides ConfigInstallerInterface::checkConfigurationToInstall
File
- src/
ProxyClass/ ConfigProviderConfigInstaller.php, line 130
Class
- ConfigProviderConfigInstaller
- Provides a proxy class for \Drupal\config_provider\ConfigProviderConfigInstaller.
Namespace
Drupal\config_provider\ProxyClassCode
public function checkConfigurationToInstall($type, $name) {
return $this
->lazyLoadItself()
->checkConfigurationToInstall($type, $name);
}