Icicle\Concurrent\Sync\FileMutex::release PHP Метод

release() защищенный Метод

Releases the lock on the mutex.
protected release ( )
    protected function release()
    {
        $success = @unlink($this->fileName);
        if (!$success) {
            throw new MutexException('Failed to unlock the mutex file.');
        }
    }