Comment fixes for CRM/Utils directory
[civicrm-core.git] / CRM / Utils / Migrate / Export.php
index ccd31a2df9056d894544653cae23bdbef6cca566..38d9edb0b3190caf62833ded78b478c0f9a337fd 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 /*
  +--------------------------------------------------------------------+
- | CiviCRM version 4.6                                                |
+ | CiviCRM version 4.7                                                |
  +--------------------------------------------------------------------+
  | Copyright CiviCRM LLC (c) 2004-2015                                |
  +--------------------------------------------------------------------+
@@ -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'));