You are here

public function ConfigFilterStorageFactory::getSync in Config Filter 8

Same name and namespace in other branches
  1. 8.2 src/ConfigFilterStorageFactory.php \Drupal\config_filter\ConfigFilterStorageFactory::getSync()

Get the sync storage Drupal uses.

Return value

\Drupal\config_filter\Config\FilteredStorageInterface The decorated sync config storage.

File

src/ConfigFilterStorageFactory.php, line 53

Class

ConfigFilterStorageFactory
Class ConfigFilterFactory.

Namespace

Drupal\config_filter

Code

public function getSync() {
  return $this
    ->getFilteredStorage($this->sync, [
    'config.storage.sync',
  ]);
}