public StringBase::getStorage()
Gets the string storage.
Return value
\Drupal\locale\StringStorageInterface The storage used for this string.
Overrides StringInterface::getStorage
File
- core/modules/locale/src/StringBase.php, line 112
Class
- StringBase
- Defines the locale string base class.
Namespace
Drupal\locale
Code
public function getStorage() { return isset($this->storage) ? $this->storage : NULL; }
Please login to continue.