public DatabaseLockBackend::release($name)
Releases the given lock.
Parameters
string $name:
Overrides LockBackendInterface::release
File
- core/lib/Drupal/Core/Lock/DatabaseLockBackend.php, line 138
Class
- DatabaseLockBackend
- Defines the database lock backend. This is the default backend in Drupal.
Namespace
Drupal\Core\Lock
Code
public function release($name) { unset($this->locks[$name]); try { $this->database->delete('semaphore') ->condition('name', $name) ->condition('value', $this->getLockId()) ->execute(); } catch (\Exception $e) { $this->catchException($e); } }
Please login to continue.