INFRA-132 - CRM/Import - phpcbf
authorTim Otten <totten@civicrm.org>
Tue, 6 Jan 2015 21:21:22 +0000 (13:21 -0800)
committerTim Otten <totten@civicrm.org>
Tue, 6 Jan 2015 23:07:43 +0000 (15:07 -0800)
CRM/Import/DataSource/CSV.php
CRM/Import/DataSource/SQL.php

index 1c3dda4d7f9a43ff38d193f67b5841e999f1f5c5..a489006f2bd9f763e6985bd066fb398982e91f0d 100644 (file)
@@ -51,7 +51,8 @@ class CRM_Import_DataSource_CSV extends CRM_Import_DataSource {
    * Set variables up before form is built
    *
    */
-  public function preProcess(&$form) {}
+  public function preProcess(&$form) {
+  }
 
   /**
    * This is function is called by the form object to get the DataSource's
@@ -117,8 +118,8 @@ class CRM_Import_DataSource_CSV extends CRM_Import_DataSource {
    */
   private static function _CsvToTable(&$db,
     $file,
-    $headers        = FALSE,
-    $table          = NULL,
+    $headers = FALSE,
+    $table = NULL,
     $fieldSeparator = ','
   ) {
     $result = array();
@@ -153,7 +154,6 @@ class CRM_Import_DataSource_CSV extends CRM_Import_DataSource {
         $duplicateColName = TRUE;
       }
 
-
       // need to truncate values per mysql field name length limits
       // mysql allows 64, but we need to account for appending colKey
       // CRM-9079
@@ -175,11 +175,13 @@ class CRM_Import_DataSource_CSV extends CRM_Import_DataSource {
       }
 
       // CRM-4881: we need to quote column names, as they may be MySQL reserved words
-      foreach ($columns as & $column) $column = "`$column`";
+      foreach ($columns as & $column) { $column = "`$column`";
+      }
     }
     else {
       $columns = array();
-      foreach ($firstrow as $i => $_) $columns[] = "col_$i";
+      foreach ($firstrow as $i => $_) { $columns[] = "col_$i";
+      }
     }
 
     // FIXME: we should regen this table's name if it exists rather than drop it
index 56aa139da2db31036d1c3c1579721cbd83d5b094..ca4eb2a7ccaaf408306c19f488b14643e03ddd43 100644 (file)
@@ -49,7 +49,8 @@ class CRM_Import_DataSource_SQL extends CRM_Import_DataSource {
    * Set variables up before form is built
    *
    */
-  public function preProcess(&$form) {}
+  public function preProcess(&$form) {
+  }
 
   /**
    * This is function is called by the form object to get the DataSource's
@@ -94,7 +95,7 @@ class CRM_Import_DataSource_SQL extends CRM_Import_DataSource {
   public function postProcess(&$params, &$db, &$form) {
     $importJob = new CRM_Contact_Import_ImportJob(
       CRM_Utils_Array::value( 'import_table_name', $params ),
-      $params['sqlQuery'], true
+      $params['sqlQuery'], TRUE
     );
 
     $form->set('importTableName', $importJob->getTableName());