You are here

public function SourceString::setString in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/locale/src/SourceString.php \Drupal\locale\SourceString::setString()

Sets the string contained in this object.

Parameters

string $string: String to set as value.

Return value

$this

Overrides StringInterface::setString

File

core/modules/locale/src/SourceString.php, line 38

Class

SourceString
Defines the locale source string object.

Namespace

Drupal\locale

Code

public function setString($string) {
  $this->source = $string;
  return $this;
}