Fixings
- fixed test for semaphore - fixed some issues - changed namespace in Tests back to "src/" - changed namings
This commit is contained in:
@@ -24,7 +24,7 @@ class CacheLockDriver extends AbstractLockDriver
|
||||
/**
|
||||
* (@inheritdoc)
|
||||
*/
|
||||
public function acquire($key, $timeout = 120)
|
||||
public function acquireLock($key, $timeout = 120)
|
||||
{
|
||||
$got_lock = false;
|
||||
$start = time();
|
||||
@@ -60,7 +60,7 @@ class CacheLockDriver extends AbstractLockDriver
|
||||
/**
|
||||
* (@inheritdoc)
|
||||
*/
|
||||
public function release($key)
|
||||
public function releaseLock($key)
|
||||
{
|
||||
$cachekey = self::getCacheKey($key);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user