Merge pull request #4664 from aydun/CRM-15681-master
[civicrm-core.git] / CRM / Custom / Import / Parser.php
index 1a1b1dbbc3c0dece0de8a12d8f014b0885b036b5..0b73ed91d28494530e804b5d6c1c51d4babbaf3a 100644 (file)
@@ -44,29 +44,29 @@ abstract class CRM_Custom_Import_Parser extends CRM_Contact_Import_Parser {
    */
 
   /**
-   * imported file size
+   * Imported file size
    */
   protected $_fileSize;
 
   /**
-   * separator being used
+   * Separator being used
    */
   protected $_separator;
 
   /**
-   * total number of lines in file
+   * Total number of lines in file
    */
   protected $_lineCount;
 
   /**
-   * whether the file has a column header or not
+   * Whether the file has a column header or not
    *
    * @var boolean
    */
   protected $_haveColumnHeader;
 
   /**
-   * @param $fileName
+   * @param string $fileName
    * @param string $separator
    * @param int $mapper
    * @param bool $skipColumnHeader
@@ -309,7 +309,7 @@ abstract class CRM_Custom_Import_Parser extends CRM_Contact_Import_Parser {
   }
 
   /**
-   * function to format the field values for input to the api
+   * Format the field values for input to the api
    *
    * @return array (reference ) associative array of name/value pairs
    * @access public