1
0
Fork 0

Fixing redis cachekey

This commit is contained in:
Philipp Holzer 2019-03-04 21:28:36 +01:00
commit 07bd4cec65
No known key found for this signature in database
GPG key ID: 517BE60E2CE5C8A5
6 changed files with 55 additions and 16 deletions

View file

@ -36,14 +36,14 @@ interface ILockDriver
* @param string $key The Name of the lock
* @param bool $override Overrides the lock to get released
*
* @return void
* @return boolean Was the unlock successful?
*/
public function releaseLock($key, $override = false);
/**
* Releases all lock that were set by us
*
* @return void
* @return boolean Was the unlock of all locks successful?
*/
public function releaseAll();
}