You are here

public function ConfigProviderConfigInstaller::setSyncing in Configuration Provider 8.2

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

Sets the status of the isSyncing flag.

Parameters

bool $status: The status of the sync flag.

Return value

$this

Overrides ConfigInstallerInterface::setSyncing

File

src/ProxyClass/ConfigProviderConfigInstaller.php, line 114

Class

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

Namespace

Drupal\config_provider\ProxyClass

Code

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