Mercurial > hg > cmmr2012-drupal-site
comparison core/lib/Drupal/Core/Config/ConfigInstallerInterface.php @ 5:12f9dff5fda9 tip
Update to Drupal core 8.7.1
author | Chris Cannam |
---|---|
date | Thu, 09 May 2019 15:34:47 +0100 |
parents | a9cd425dd02b |
children |
comparison
equal
deleted
inserted
replaced
4:a9cd425dd02b | 5:12f9dff5fda9 |
---|---|
74 * @return $this | 74 * @return $this |
75 */ | 75 */ |
76 public function setSourceStorage(StorageInterface $storage); | 76 public function setSourceStorage(StorageInterface $storage); |
77 | 77 |
78 /** | 78 /** |
79 * Gets the configuration storage that provides the default configuration. | |
80 * | |
81 * @return \Drupal\Core\Config\StorageInterface|null | |
82 * The configuration storage that provides the default configuration. | |
83 * Returns null if the source storage has not been set. | |
84 */ | |
85 public function getSourceStorage(); | |
86 | |
87 /** | |
79 * Sets the status of the isSyncing flag. | 88 * Sets the status of the isSyncing flag. |
80 * | 89 * |
81 * @param bool $status | 90 * @param bool $status |
82 * The status of the sync flag. | 91 * The status of the sync flag. |
83 * | 92 * |