mirror of
https://github.com/retailcrm/PHPExcel.git
synced 2024-11-22 21:36:05 +03:00
Minor performance optimisation: use $x+=3 instead of $x=$x+3
git-svn-id: https://phpexcel.svn.codeplex.com/svn/trunk@83576 2327b42d-5241-43d6-9e2a-de5ac946f064
This commit is contained in:
parent
11c87c19ad
commit
bde593557d
@ -181,9 +181,9 @@ class PHPExcel_Shared_Date
|
||||
|
||||
// Julian base date Adjustment
|
||||
if ($month > 2) {
|
||||
$month = $month - 3;
|
||||
$month -= 3;
|
||||
} else {
|
||||
$month = $month + 9;
|
||||
$month += 9;
|
||||
--$year;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user