public function LocaleProjectStorage::delete in Drupal 8
Same name and namespace in other branches
- 9 core/modules/locale/src/LocaleProjectStorage.php \Drupal\locale\LocaleProjectStorage::delete()
- 10 core/modules/locale/src/LocaleProjectStorage.php \Drupal\locale\LocaleProjectStorage::delete()
Deletes project records for a given key.
Parameters
string $key: The key of the data to delete.
Overrides LocaleProjectStorageInterface::delete
File
- core/
modules/ locale/ src/ LocaleProjectStorage.php, line 106
Class
- LocaleProjectStorage
- Provides the locale project storage system using a key value store.
Namespace
Drupal\localeCode
public function delete($key) {
$this
->deleteMultiple([
$key,
]);
}