public function StorageComparer::__construct in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/lib/Drupal/Core/Config/StorageComparer.php \Drupal\Core\Config\StorageComparer::__construct()
Constructs the Configuration storage comparer.
Parameters
\Drupal\Core\Config\StorageInterface $source_storage: Storage object used to read configuration.
\Drupal\Core\Config\StorageInterface $target_storage: Storage object used to write configuration.
\Drupal\Core\Config\ConfigManagerInterface $config_manager: The configuration manager.
File
- core/
lib/ Drupal/ Core/ Config/ StorageComparer.php, line 106 - Contains \Drupal\Core\Config\StorageComparer.
Class
- StorageComparer
- Defines a config storage comparer.
Namespace
Drupal\Core\ConfigCode
public function __construct(StorageInterface $source_storage, StorageInterface $target_storage, ConfigManagerInterface $config_manager) {
// Wrap the storages in a static cache so that multiple reads of the same
// raw configuration object are not costly.
$this->sourceCacheStorage = new MemoryBackend(__CLASS__ . '::source');
$this->sourceStorage = new CachedStorage($source_storage, $this->sourceCacheStorage);
$this->targetCacheStorage = new MemoryBackend(__CLASS__ . '::target');
$this->targetStorage = new CachedStorage($target_storage, $this->targetCacheStorage);
$this->configManager = $config_manager;
$this->changelist[StorageInterface::DEFAULT_COLLECTION] = $this
->getEmptyChangelist();
}