Completed
Pull Request — develop (#80)
by
unknown
31:02
created
src/PhpSpreadsheet/Reader/Csv.php 1 patch
Indentation   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -71,11 +71,11 @@  discard block
 block discarded – undo
71 71
     private $contiguousRow = -1;
72 72
 
73 73
     /**
74
-    * Col Data Type 
75
-    *
76
-    * @access private
77
-    * @array PHPExcel_Cell_DataType
78
-    */
74
+     * Col Data Type 
75
+     *
76
+     * @access private
77
+     * @array PHPExcel_Cell_DataType
78
+     */
79 79
     private $_colDataType = array();
80 80
 
81 81
     /**
@@ -427,12 +427,12 @@  discard block
 block discarded – undo
427 427
     }
428 428
     
429 429
     /**
430
-    * Get col data Type
431
-    *
432
-    * @param string
433
-    * @return mixed
434
-    */
435
-	public function getColDataType($colLetter)
430
+     * Get col data Type
431
+     *
432
+     * @param string
433
+     * @return mixed
434
+     */
435
+    public function getColDataType($colLetter)
436 436
     {
437 437
         if (isset($this->_colDataType[$colLetter])) {
438 438
             return $this->_colDataType[$colLetter];
@@ -442,11 +442,11 @@  discard block
 block discarded – undo
442 442
     }
443 443
     
444 444
     /**
445
-    * Set col data Type
446
-    *
447
-    * @param string, PHPExcel_Cell_DataType
448
-    * @return PHPExcel_Reader_CSV
449
-    */
445
+     * Set col data Type
446
+     *
447
+     * @param string, PHPExcel_Cell_DataType
448
+     * @return PHPExcel_Reader_CSV
449
+     */
450 450
     public function setColDataType($colLetter = 'A', $dateType = PHPExcel_Cell_DataType::TYPE_STRING)
451 451
     {
452 452
         $this->_colDataType[$colLetter] = $dateType;
Please login to merge, or discard this patch.