X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=CRM%2FCore%2FTransaction.php;h=b00ce04135fae231224732422ea974e1aacef063;hb=b6debb8c30e9e3290fe2fde340fa5ebabea978dc;hp=478ac425f9476d80d6a6e8c682b2fa458dba7199;hpb=eaf537d9b91fa5f2aa8b915fbf057bc657cce76f;p=civicrm-core.git diff --git a/CRM/Core/Transaction.php b/CRM/Core/Transaction.php index 478ac425f9..b00ce04135 100644 --- a/CRM/Core/Transaction.php +++ b/CRM/Core/Transaction.php @@ -1,34 +1,18 @@ (c) 2007 * $Id$ * @@ -95,6 +79,7 @@ class CRM_Core_Transaction { /** * Whether commit() has been called on this instance * of CRM_Core_Transaction + * @var bool */ private $_pseudoCommitted = FALSE; @@ -147,7 +132,7 @@ class CRM_Core_Transaction { /** * @param $flag */ - static public function rollbackIfFalse($flag) { + public static function rollbackIfFalse($flag) { $frame = \Civi\Core\Transaction\Manager::singleton()->getFrame(); if ($flag === FALSE && $frame !== NULL) { $frame->setRollbackOnly(); @@ -203,7 +188,7 @@ class CRM_Core_Transaction { * callstack will not wind-down normally -- e.g. before * a call to exit(). */ - static public function forceRollbackIfEnabled() { + public static function forceRollbackIfEnabled() { if (\Civi\Core\Transaction\Manager::singleton()->getFrame() !== NULL) { \Civi\Core\Transaction\Manager::singleton()->forceRollback(); } @@ -212,7 +197,7 @@ class CRM_Core_Transaction { /** * @return bool */ - static public function willCommit() { + public static function willCommit() { $frame = \Civi\Core\Transaction\Manager::singleton()->getFrame(); return ($frame === NULL) ? TRUE : !$frame->isRollbackOnly(); } @@ -220,7 +205,7 @@ class CRM_Core_Transaction { /** * Determine whether there is a pending transaction. */ - static public function isActive() { + public static function isActive() { $frame = \Civi\Core\Transaction\Manager::singleton()->getFrame(); return ($frame !== NULL); } @@ -246,7 +231,7 @@ class CRM_Core_Transaction { * See php manual call_user_func_array for details. * @param int $id */ - static public function addCallback($phase, $callback, $params = NULL, $id = NULL) { + public static function addCallback($phase, $callback, $params = NULL, $id = NULL) { $frame = \Civi\Core\Transaction\Manager::singleton()->getBaseFrame(); $frame->addCallback($phase, $callback, $params, $id); }