public function ConfigProviderConfigInstaller::setSyncing in Configuration Provider 8
Same name and namespace in other branches
- 8.2 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\ProxyClassCode
public function setSyncing($status) {
  return $this
    ->lazyLoadItself()
    ->setSyncing($status);
}