public function MemoryStorage::encode in Drupal 8
Same name and namespace in other branches
- 9 core/lib/Drupal/Core/Config/MemoryStorage.php \Drupal\Core\Config\MemoryStorage::encode()
Encodes configuration data into the storage-specific format.
This is a publicly accessible static method to allow for alternative usages in data conversion scripts and also tests.
Parameters
array $data: The configuration data to encode.
Return value
string The encoded configuration data.
Overrides StorageInterface::encode
File
- core/
lib/ Drupal/ Core/ Config/ MemoryStorage.php, line 99
Class
- MemoryStorage
- Provides an in memory configuration storage.
Namespace
Drupal\Core\ConfigCode
public function encode($data) {
return $data;
}