You are here

public function StringBase::setVersion in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/locale/src/StringBase.php \Drupal\locale\StringBase::setVersion()
  2. 10 core/modules/locale/src/StringBase.php \Drupal\locale\StringBase::setVersion()

Sets the string version.

Parameters

string $version: Version identifier.

Return value

$this

Overrides StringInterface::setVersion

File

core/modules/locale/src/StringBase.php, line 91

Class

StringBase
Defines the locale string base class.

Namespace

Drupal\locale

Code

public function setVersion($version) {
  $this->version = $version;
  return $this;
}