You are here

public function ConfigProviderConfigInstaller::isSyncing in Configuration Provider 8.2

Same name and namespace in other branches
  1. 8 src/ProxyClass/ConfigProviderConfigInstaller.php \Drupal\config_provider\ProxyClass\ConfigProviderConfigInstaller::isSyncing()

Gets the syncing state.

Return value

bool Returns TRUE is syncing flag set.

Overrides ConfigInstallerInterface::isSyncing

File

src/ProxyClass/ConfigProviderConfigInstaller.php, line 122

Class

ConfigProviderConfigInstaller
Provides a proxy class for \Drupal\config_provider\ConfigProviderConfigInstaller.

Namespace

Drupal\config_provider\ProxyClass

Code

public function isSyncing() {
  return $this
    ->lazyLoadItself()
    ->isSyncing();
}