Overrides CacheInterface::generateKey
public function generateKey(string $name, string $className) : string { $hash = hash(\PHP_VERSION_ID < 80100 ? 'sha256' : 'xxh128', $className); return $this->directory . $hash[0] . $hash[1] . '/' . $hash . '.php'; }