Merge remote-tracking branch 'upstream/4.5' into 4.5-4.6-2015-04-06-18-05-56
[civicrm-core.git] / bin / csv / import.php
index 03a9258a4037bfc952e26d9e65efef6aea519ca8..aa17e60281117e7b853a9ad48a9bfb945eccb6df 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 /*
  +--------------------------------------------------------------------+
- | CiviCRM version 4.5                                                |
+ | CiviCRM version 4.6                                                |
  +--------------------------------------------------------------------+
  | Copyright Tech To The People http:tttp.eu (c) 2011                 |
  +--------------------------------------------------------------------+
@@ -21,7 +21,7 @@
  | GNU Affero General Public License or the licensing of CiviCRM,     |
  | see the CiviCRM license FAQ at http://civicrm.org/licensing        |
  +--------------------------------------------------------------------+
-*/
+ */
 
 /**
  * Import records from a csv file passed as an argument.
  * php bin/csv/import.php -e <entity> --file /path/to/csv/file [ -s site.org ]
  * e.g.: php bin/csv/import.php -e Contact --file /tmp/import.csv
  *
- **/
-require_once (dirname(__DIR__) . '/cli.class.php');
+ */
+require_once dirname(__DIR__) . '/cli.class.php';
 
 $entityImporter = new civicrm_cli_csv_importer();
 $entityImporter->run();
-
-