NinjaMutex\Lock\PhpRedisLock::isLocked PHP Method

isLocked() public method

Check if lock is locked
public isLocked ( string $name ) : boolean
$name string name of lock
return boolean
    public function isLocked($name)
    {
        return false !== $this->client->get($name);
    }