private function RedisProfilerStorage::getItemName

Gets the item name.

Parameters

string $token:

Return value

string

4 calls to RedisProfilerStorage::getItemName()

File

drupal/core/vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Profiler/RedisProfilerStorage.php, line 287

Class

RedisProfilerStorage
RedisProfilerStorage stores profiling information in Redis.

Namespace

Symfony\Component\HttpKernel\Profiler

Code

private function getItemName($token) {
  $name = $token;
  if ($this
    ->isItemNameValid($name)) {
    return $name;
  }
  return false;
}