From 487888414a511ad24d2328b9d686f5ae56e3aeb7 Mon Sep 17 00:00:00 2001 From: Martin Evans Date: Sun, 15 Jun 2014 18:05:51 +0100 Subject: [PATCH] Minor Docblock update: corrected the return value from PHPExcel_Shared_Date::ExcelToPHPObject updated to reflect the PHP DateTime object that is to be returned. --- Classes/PHPExcel/Shared/Date.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Classes/PHPExcel/Shared/Date.php b/Classes/PHPExcel/Shared/Date.php index f253786d..75f367ea 100644 --- a/Classes/PHPExcel/Shared/Date.php +++ b/Classes/PHPExcel/Shared/Date.php @@ -155,7 +155,7 @@ class PHPExcel_Shared_Date * Convert a date from Excel to a PHP Date/Time object * * @param integer $dateValue Excel date/time value - * @return integer PHP date/time object + * @return DateTime PHP date/time object */ public static function ExcelToPHPObject($dateValue = 0) { $dateTime = self::ExcelToPHP($dateValue);