X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=CRM%2FUtils%2FMigrate%2FExport.php;h=38d9edb0b3190caf62833ded78b478c0f9a337fd;hb=50bfb46054c0ccd0f836a569c5417969da3c1a53;hp=3b66f0dcbba0476f2ff35782993b996726fee57d;hpb=24c974a6442638dcc0f57496515d4837f7d872d2;p=civicrm-core.git diff --git a/CRM/Utils/Migrate/Export.php b/CRM/Utils/Migrate/Export.php index 3b66f0dcbb..38d9edb0b3 100644 --- a/CRM/Utils/Migrate/Export.php +++ b/CRM/Utils/Migrate/Export.php @@ -29,8 +29,6 @@ * * @package CRM * @copyright CiviCRM LLC (c) 2004-2015 - * $Id$ - * */ class CRM_Utils_Migrate_Export { @@ -52,8 +50,6 @@ class CRM_Utils_Migrate_Export { */ protected $_xml; - /** - */ public function __construct() { $this->_xml = array( 'customGroup' => array( @@ -166,9 +162,7 @@ class CRM_Utils_Migrate_Export { } /** - * Scan local customizations and build an in-memory representation - * - * @return void + * Scan local customizations and build an in-memory representation. */ public function build() { // fetch the option group / values for @@ -266,9 +260,10 @@ class CRM_Utils_Migrate_Export { } /** + * Build custom groups. + * * @param array $customGroupIds * List of custom groups to export. - * @return void */ public function buildCustomGroups($customGroupIds) { $customGroupIdsSql = implode(',', array_filter($customGroupIds, 'is_numeric')); @@ -322,7 +317,6 @@ class CRM_Utils_Migrate_Export { /** * @param array $ufGroupIds * List of custom groups to export. - * @return void */ public function buildUFGroups($ufGroupIds) { $ufGroupIdsSql = implode(',', array_filter($ufGroupIds, 'is_numeric'));