You are here

public function PersistentDatabaseLockBackend::release in Drupal driver for SQL Server and SQL Azure 8.2

Releases the given lock.

Parameters

string $name:

Overrides LockBackendInterface::release

File

src/ProxyClass/Lock/PersistentDatabaseLockBackend.php, line 92
Contains \Drupal\sqlsrv\ProxyClass\Lock\PersistentCouchbaseLockBackend.

Class

PersistentDatabaseLockBackend
Provides a proxy class for \Drupal\couchbase\Lock\CouchbaseLockBackend.

Namespace

Drupal\sqlsrv\ProxyClass\Lock

Code

public function release($name) {
  return $this
    ->lazyLoadItself()
    ->release($name);
}