public static function AuthenticationMultivalueKeyType::generateKeyValue in Key 8
Generate a key value of this type using the submitted configuration.
Parameters
array $configuration: The configuration for the key type plugin.
Return value
string The generated key value.
Overrides KeyTypeInterface::generateKeyValue
File
- src/
Plugin/ KeyType/ AuthenticationMultivalueKeyType.php, line 32
Class
- AuthenticationMultivalueKeyType
- Defines a generic key type for authentication with multiple values.
Namespace
Drupal\key\Plugin\KeyTypeCode
public static function generateKeyValue(array $configuration) {
// Return an empty JSON element.
return '[]';
}