protected PhpBackend::normalizeCid($cid)
Ensures a normalized cache ID.
Parameters
string $cid: The passed in cache ID.
Return value
string A normalized cache ID.
File
- core/lib/Drupal/Core/Cache/PhpBackend.php, line 267
Class
- PhpBackend
- Defines a PHP cache implementation.
Namespace
Drupal\Core\Cache
Code
1 2 3 | protected function normalizeCid( $cid ) { return Crypt::hashBase64( $cid ); } |
Please login to continue.