🎨 Fix local variable names

Was copy/paste and wasn't consistent with the functionnality :/
This commit is contained in:
Pierre Goiffon
2021-06-10 16:28:17 +02:00
parent 0de6f98add
commit 147916062b

View File

@@ -398,10 +398,10 @@ class MonthlyRotatingLogFileNameBuilder extends RotatingLogFileNameBuilder
*/
protected function GetFileSuffix($oDate)
{
$sWeekYear = $oDate->format('o');
$sWeekNumber = $oDate->format('m');
$sMonthYear = $oDate->format('o');
$sMonthNumber = $oDate->format('m');
return $sWeekYear.'-month'.$sWeekNumber;
return $sMonthYear.'-month'.$sMonthNumber;
}
/**