comparison core/lib/Drupal/Core/EventSubscriber/ConfigSnapshotSubscriber.php @ 12:7a779792577d

Update Drupal core to v8.4.5 (via Composer)
author Chris Cannam
date Fri, 23 Feb 2018 15:52:07 +0000
parents 4c8ae668cc8c
children
comparison
equal deleted inserted replaced
11:bfffd8d7479a 12:7a779792577d
35 protected $snapshotStorage; 35 protected $snapshotStorage;
36 36
37 /** 37 /**
38 * Constructs the ConfigSnapshotSubscriber object. 38 * Constructs the ConfigSnapshotSubscriber object.
39 * 39 *
40 * @param StorageInterface $source_storage 40 * @param \Drupal\Core\Config\StorageInterface $source_storage
41 * The source storage used to discover configuration changes. 41 * The source storage used to discover configuration changes.
42 * @param StorageInterface $snapshot_storage 42 * @param \Drupal\Core\Config\StorageInterface $snapshot_storage
43 * The snapshot storage used to write configuration changes. 43 * The snapshot storage used to write configuration changes.
44 */ 44 */
45 public function __construct(ConfigManagerInterface $config_manager, StorageInterface $source_storage, StorageInterface $snapshot_storage) { 45 public function __construct(ConfigManagerInterface $config_manager, StorageInterface $source_storage, StorageInterface $snapshot_storage) {
46 $this->configManager = $config_manager; 46 $this->configManager = $config_manager;
47 $this->sourceStorage = $source_storage; 47 $this->sourceStorage = $source_storage;