: str_replace(): Passing null to parameter #2 ($replace) of type array|string is deprecated in
* @copyright Copyright (c) 2015, Freemius, Inc.
* @license https://www.gnu.org/licenses/gpl-3.0.html GNU General Public License Version 3
if ( ! defined( 'ABSPATH' ) ) {
require_once WP_FS__DIR_INCLUDES . '/class-fs-lock.php';
#--------------------------------------------------------------------------------
#--------------------------------------------------------------------------------
private static $_instance;
* @author Vova Feldman (@svovaf)
static function instance() {
if ( ! isset( self::$_instance ) ) {
self::$_instance = new self();
private function __construct() {
$current_user_id = Freemius::get_current_wp_user_id();
$this->_lock = new FS_Lock( "locked_{$current_user_id}" );
* Try to acquire lock. If the lock is already set or is being acquired by another locker, don't do anything.
* @author Vova Feldman (@svovaf)
* @return bool TRUE if successfully acquired lock.
function try_lock( $expiration = 0 ) {
return $this->_lock->try_lock( $expiration );
* Acquire lock regardless if it's already acquired by another locker or not.
* @author Vova Feldman (@svovaf)
function lock( $expiration = 0 ) {
$this->_lock->lock( $expiration );
* @author Vova Feldman (@svovaf)