X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=CRM%2FCore%2FTransaction.php;h=b00ce04135fae231224732422ea974e1aacef063;hb=34549323dc186f2fb67e4933a26c1de946a99700;hp=a61fbf4611854a2c073a55953e517772eb5355eb;hpb=dc617c20a5a57ddc6f77b6c5404f5af65dfe58dd;p=civicrm-core.git diff --git a/CRM/Core/Transaction.php b/CRM/Core/Transaction.php index a61fbf4611..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); }