proofdb/vendor/illuminate/contracts/Cache/CanFlushLocks.php
2026-05-01 23:40:14 +08:00

21 lines
365 B
PHP

<?php
namespace Illuminate\Contracts\Cache;
interface CanFlushLocks
{
/**
* Flush all locks managed by the store.
*
* @return bool
*/
public function flushLocks(): bool;
/**
* Determine if the lock store is separate from the cache store.
*
* @return bool
*/
public function hasSeparateLockStore(): bool;
}