lock($name, 0, $owner); } /** * Flush all locks managed by the store. */ public function flushLocks(): bool { return true; } /** * Determine if the lock store is separate from the cache store. */ public function hasSeparateLockStore(): bool { return false; } /** * Adjust the expiration time of a cached item. * * @param string $key * @param int $seconds * @return bool */ public function touch($key, $seconds) { return false; } /** * Remove an item from the cache. * * @param string $key * @return bool */ public function forget($key) { return true; } /** * Remove all items from the cache. * * @return bool */ public function flush() { return true; } /** * Get the cache key prefix. * * @return string */ public function getPrefix() { return ''; } }