public ConfigInstaller::setSourceStorage(StorageInterface $storage)
Sets the configuration storage that provides the default configuration.
Parameters
\Drupal\Core\Config\StorageInterface $storage:
Return value
$this
Overrides ConfigInstallerInterface::setSourceStorage
File
- core/lib/Drupal/Core/Config/ConfigInstaller.php, line 351
Class
Namespace
Drupal\Core\Config
Code
1 2 3 4 | public function setSourceStorage(StorageInterface $storage ) { $this ->sourceStorage = $storage ; return $this ; } |
Please login to continue.