You are here

public static function Drupal::isConfigSyncing in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 core/lib/Drupal.php \Drupal::isConfigSyncing()

Gets the syncing state.

Return value

bool Returns TRUE is syncing flag set.

File

core/lib/Drupal.php, line 650
Contains \Drupal.

Class

Drupal
Static Service Container wrapper.

Code

public static function isConfigSyncing() {
  return static::getContainer()
    ->get('config.installer')
    ->isSyncing();
}