From 92b8350803e2bddc2346d0d95dc7d13e2ec17d50 Mon Sep 17 00:00:00 2001 From: Eileen McNaughton Date: Sun, 27 Apr 2014 11:38:22 -0700 Subject: [PATCH] comment fix --- CRM/Core/DAO.php | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/CRM/Core/DAO.php b/CRM/Core/DAO.php index 4652b79e79..7596dee47d 100644 --- a/CRM/Core/DAO.php +++ b/CRM/Core/DAO.php @@ -1255,9 +1255,11 @@ SELECT contact_id return self::escapeString($string); } - //Creates a test object, including any required objects it needs via recursion - //createOnly: only create in database, do not store or return the objects (useful for perf testing) - //ONLY USE FOR TESTING + /** + * Creates a test object, including any required objects it needs via recursion + *createOnly: only create in database, do not store or return the objects (useful for perf testing) + *ONLY USE FOR TESTING + */ static function createTestObject( $daoName, $params = array(), @@ -1435,9 +1437,10 @@ SELECT contact_id else return $objects; } - //deletes the this object plus any dependent objects that are associated with it - //ONLY USE FOR TESTING - + /** + * deletes the this object plus any dependent objects that are associated with it + * ONLY USE FOR TESTING + */ static function deleteTestObjects($daoName, $params = array( )) { //this is a test function also backtrace is set for the test suite it sometimes unsets itself -- 2.25.1