public StorableConfigBase::getStorage()
Retrieves the storage used to load and save this configuration object.
Return value
\Drupal\Core\Config\StorageInterface The configuration storage object.
File
- core/lib/Drupal/Core/Config/StorableConfigBase.php, line 117
Class
- StorableConfigBase
- Provides a base class for configuration objects with storage support.
Namespace
Drupal\Core\Config
Code
1 2 3 | public function getStorage() { return $this ->storage; } |
Please login to continue.