HEX
Server: LiteSpeed
System: Linux server302.web-hosting.com 4.18.0-513.18.1.lve.el8.x86_64 #1 SMP Thu Feb 22 12:55:50 UTC 2024 x86_64
User: synqowzz (1256)
PHP: 8.1.34
Disabled: NONE
Upload Files
File: //proc/self/cwd/wp-content/plugins/wordfence/modules/login-security/classes/utility/nulllock.php
<?php

namespace WordfenceLS;

/**
 * An implementation of the Utility_Lock that doesn't actually do any locking
 */
class Utility_NullLock implements Utility_Lock {

	public function acquire($delay = self::DEFAULT_DELAY) {
		//Do nothing
	}

	public function release() {
		//Do nothing
	}

}