You are here

public function StringDatabaseStorage::createString in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/locale/src/StringDatabaseStorage.php \Drupal\locale\StringDatabaseStorage::createString()
  2. 9 core/modules/locale/src/StringDatabaseStorage.php \Drupal\locale\StringDatabaseStorage::createString()

File

core/modules/locale/src/StringDatabaseStorage.php, line 225

Class

StringDatabaseStorage
Defines a class to store localized strings in the database.

Namespace

Drupal\locale

Code

public function createString($values = []) {
  return new SourceString($values + [
    'storage' => $this,
  ]);
}