X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=CRM%2FCore%2FTransaction.php;h=6cc7260f55ce6ae98e0aceeeca1f95c359c5148a;hb=2c261619079f054c88346c14af30bd3790936573;hp=b9812acbf40865cb6d13825624528eda7c37969d;hpb=414b3228db09432f1e389a89f9fb9e3f22d0f2da;p=civicrm-core.git diff --git a/CRM/Core/Transaction.php b/CRM/Core/Transaction.php index b9812acbf4..6cc7260f55 100644 --- a/CRM/Core/Transaction.php +++ b/CRM/Core/Transaction.php @@ -3,7 +3,7 @@ +--------------------------------------------------------------------+ | CiviCRM version 4.6 | +--------------------------------------------------------------------+ - | Copyright CiviCRM LLC (c) 2004-2014 | + | Copyright CiviCRM LLC (c) 2004-2015 | +--------------------------------------------------------------------+ | This file is a part of CiviCRM. | | | @@ -28,7 +28,7 @@ /** * * @package CRM - * @copyright CiviCRM LLC (c) 2004-2014 + * @copyright CiviCRM LLC (c) 2004-2015 * @copyright David Strauss (c) 2007 * $Id$ * @@ -85,7 +85,7 @@ class CRM_Core_Transaction { /** - * These constants represent phases at which callbacks can be invoked + * These constants represent phases at which callbacks can be invoked. */ const PHASE_PRE_COMMIT = 1; const PHASE_POST_COMMIT = 2; @@ -99,7 +99,7 @@ class CRM_Core_Transaction { private $_pseudoCommitted = FALSE; /** - * Ensure that an SQL transaction is started + * Ensure that an SQL transaction is started. * * This is a thin wrapper around __construct() which allows more fluent coding. * @@ -114,7 +114,7 @@ class CRM_Core_Transaction { } /** - * Ensure that an SQL transaction is started + * Ensure that an SQL transaction is started. * * @param bool $nest * Determines what to do if there's currently an active transaction:. @@ -130,7 +130,7 @@ class CRM_Core_Transaction { } /** - * Immediately commit or rollback + * Immediately commit or rollback. * * (Note: Prior to 4.6, return void) * @@ -218,7 +218,7 @@ class CRM_Core_Transaction { } /** - * Determine whether there is a pending transaction + * Determine whether there is a pending transaction. */ static public function isActive() { $frame = \Civi\Core\Transaction\Manager::singleton()->getFrame(); @@ -226,7 +226,7 @@ class CRM_Core_Transaction { } /** - * Add a transaction callback + * Add a transaction callback. * * Note: It's conceivable to add callbacks to the main/overall transaction * (aka $manager->getBaseFrame()) or to the innermost nested transaction