X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=CRM%2FCore%2FLock.php;h=31077138e65d87115425f309c8e66eaa362899c5;hb=8891c196ebd01aecfe5c0f2f3be70af4fdcb0adf;hp=460475e4183fbc7202e7a576c28f191baf59f977;hpb=79ee443c74b9984eaab3840ff5700b0d796c4178;p=civicrm-core.git diff --git a/CRM/Core/Lock.php b/CRM/Core/Lock.php index 460475e418..31077138e6 100644 --- a/CRM/Core/Lock.php +++ b/CRM/Core/Lock.php @@ -44,11 +44,16 @@ class CRM_Core_Lock implements \Civi\Core\Lock\LockInterface { * * @var bool */ - static $jobLog = FALSE; + public static $jobLog = FALSE; - // lets have a 3 second timeout for now + /** + * lets have a 3 second timeout for now + */ const TIMEOUT = 3; + /** + * @var bool + */ protected $_hasLock = FALSE; protected $_name; @@ -182,10 +187,10 @@ class CRM_Core_Lock implements \Civi\Core\Lock\LockInterface { } $query = "SELECT GET_LOCK( %1, %2 )"; - $params = array( - 1 => array($this->_id, 'String'), - 2 => array($timeout ? $timeout : $this->_timeout, 'Integer'), - ); + $params = [ + 1 => [$this->_id, 'String'], + 2 => [$timeout ? $timeout : $this->_timeout, 'Integer'], + ]; $res = CRM_Core_DAO::singleValueQuery($query, $params); if ($res) { if (defined('CIVICRM_LOCK_DEBUG')) { @@ -220,7 +225,7 @@ class CRM_Core_Lock implements \Civi\Core\Lock\LockInterface { } $query = "SELECT RELEASE_LOCK( %1 )"; - $params = array(1 => array($this->_id, 'String')); + $params = [1 => [$this->_id, 'String']]; return CRM_Core_DAO::singleValueQuery($query, $params); } } @@ -230,7 +235,7 @@ class CRM_Core_Lock implements \Civi\Core\Lock\LockInterface { */ public function isFree() { $query = "SELECT IS_FREE_LOCK( %1 )"; - $params = array(1 => array($this->_id, 'String')); + $params = [1 => [$this->_id, 'String']]; return CRM_Core_DAO::singleValueQuery($query, $params); }