/home/vianto5/cititower.mx/wp-content/plugins/sitepress-multilingual-cms/classes/ATE
Edit: /home/vianto5/cititower.mx/wp-content/plugins/sitepress-multilingual-cms/classes/ATE/SyncLock.php (526B)
keyedLock = make( KeyedLock::class, [ ':name' => 'ate_sync' ] );
}
/**
* @param null~string $key
*
* @return false|string
*/
public function create( $key = null ) {
return $this->keyedLock->create( $key, 30 );
}
/**
* @return bool
*/
public function release() {
return $this->keyedLock->release();
}
}