Issue #2257757 by martin107: \Drupal::isConfigSyncing should be marked as static.

8.0.x
Nathaniel Catchpole 2014-05-08 15:10:16 +01:00
parent 8f60160589
commit 596c9f30b0
1 changed files with 1 additions and 1 deletions

View File

@ -618,7 +618,7 @@ class Drupal {
* @return bool
* Returns TRUE is syncing flag set.
*/
public function isConfigSyncing() {
public static function isConfigSyncing() {
return static::$container->get('config.installer')->isSyncing();
}