1
0
mirror of https://github.com/Seldaek/monolog.git synced 2025-07-31 18:30:15 +02:00

More 5.3 fixes

This commit is contained in:
Jordi Boggiano
2018-06-09 10:23:30 +02:00
parent 06f7bfb0ee
commit 5de973cd33

View File

@@ -215,13 +215,13 @@ class RotatingFileHandlerTest extends TestCase
return array(
'Rotation is triggered when the file of the current day is not present but similar exists'
=> [RotatingFileHandler::FILE_PER_DAY],
=> array(RotatingFileHandler::FILE_PER_DAY),
'Rotation is triggered when the file of the current month is not present but similar exists'
=> [RotatingFileHandler::FILE_PER_MONTH],
=> array(RotatingFileHandler::FILE_PER_MONTH),
'Rotation is triggered when the file of the current year is not present but similar exists'
=> [RotatingFileHandler::FILE_PER_YEAR],
=> array(RotatingFileHandler::FILE_PER_YEAR),
);
}