Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. DatabaseTableTrait.php

function DatabaseTableTrait::getHashedKey

Returns a hashed version of the key.

8 calls to DatabaseTableTrait::getHashedKey()
DoctrineDbalStore::delete in vendor/symfony/lock/Store/DoctrineDbalStore.php
Removes a resource from the storage.
DoctrineDbalStore::exists in vendor/symfony/lock/Store/DoctrineDbalStore.php
Returns whether or not the resource exists in the storage.
DoctrineDbalStore::putOffExpiration in vendor/symfony/lock/Store/DoctrineDbalStore.php
Extends the TTL of a resource.
DoctrineDbalStore::save in vendor/symfony/lock/Store/DoctrineDbalStore.php
Stores the resource if it's not locked by someone else.
PdoStore::delete in vendor/symfony/lock/Store/PdoStore.php
Removes a resource from the storage.

... See full list

File

vendor/symfony/lock/Store/DatabaseTableTrait.php, line 51

Class

DatabaseTableTrait
@internal

Namespace

Symfony\Component\Lock\Store

Code

private function getHashedKey(Key $key) : string {
    return hash('sha256', (string) $key);
}

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal