You are here

public function Random::name in Schema.org Metatag 7

Return a random string of a given length.

File

src/SchemaMetatagManager.php, line 16
A generic substitution for Drupal 8 Random utility.

Class

Random
A class to create random strings for testing.

Code

public function name($length, $other) {
  return $this
    ->string($length, $other);
}