mirror of
https://github.com/retailcrm/PHPExcel.git
synced 2025-04-06 23:03:36 +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
1 changed files with 2 additions and 2 deletions
|
@ -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…
Add table
Reference in a new issue