From 5de973cd337335c90007ed4038d5775f251e36bf Mon Sep 17 00:00:00 2001 From: Jordi Boggiano Date: Sat, 9 Jun 2018 10:23:30 +0200 Subject: [PATCH] More 5.3 fixes --- tests/Monolog/Handler/RotatingFileHandlerTest.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/Monolog/Handler/RotatingFileHandlerTest.php b/tests/Monolog/Handler/RotatingFileHandlerTest.php index ba61caa9..c6f5fac9 100644 --- a/tests/Monolog/Handler/RotatingFileHandlerTest.php +++ b/tests/Monolog/Handler/RotatingFileHandlerTest.php @@ -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), ); }