Merge remote-tracking branch 'origin/master'

# Conflicts:
#	Classes/PHPExcel/Calculation/Functions.php
#	Classes/PHPExcel/Worksheet.php
#	Classes/PHPExcel/Worksheet/CellIterator.php
This commit is contained in:
MarkBaker 2018-11-23 00:07:24 +01:00
commit 1441011fb7
2 changed files with 9 additions and 10 deletions

View File

@ -518,15 +518,14 @@ class PHPExcel_Calculation_Functions
} }
/** /**
* VERSION * VERSION
* *
* @return string Version information * @return string Version information
*/ */
public static function VERSION() public static function VERSION() {
{ return 'PHPExcel 1.8.2, 2018-11-22';
return 'PHPExcel ##VERSION##, ##DATE##'; } // function VERSION()
}
/** /**

View File

@ -70,7 +70,7 @@ abstract class PHPExcel_Worksheet_CellIterator
* Validate start/end values for "IterateOnlyExistingCells" mode, and adjust if necessary * Validate start/end values for "IterateOnlyExistingCells" mode, and adjust if necessary
* *
* @throws PHPExcel_Exception * @throws PHPExcel_Exception
*/ */
abstract protected function adjustForExistingOnlyRange(); abstract protected function adjustForExistingOnlyRange();
/** /**