| Current Path : /home/frekansk/www/wp-content/plugins/wordfence/modules/login-security/classes/utility/ |
| Current File : /home/frekansk/www/wp-content/plugins/wordfence/modules/login-security/classes/utility/lock.php |
<?php
namespace WordfenceLS;
interface Utility_Lock {
const DEFAULT_DELAY = 100000;
public function acquire($delay = self::DEFAULT_DELAY);
public function release();
}