You are here

public function DecoratingConfigInstaller::setSyncing in Configuration selector 8

Same name and namespace in other branches
  1. 8.2 src/DecoratingConfigInstaller.php \Drupal\config_selector\DecoratingConfigInstaller::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/DecoratingConfigInstaller.php, line 83

Class

DecoratingConfigInstaller
Decorates the config.installer service so install_install_profiles() works.

Namespace

Drupal\config_selector

Code

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