From 06f7bfb0ee4284e48e227880feeec1d87b50955a Mon Sep 17 00:00:00 2001 From: Jordi Boggiano Date: Fri, 8 Jun 2018 23:41:14 +0200 Subject: [PATCH] Fix 5.3 build --- tests/Monolog/Handler/RotatingFileHandlerTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/Monolog/Handler/RotatingFileHandlerTest.php b/tests/Monolog/Handler/RotatingFileHandlerTest.php index 0f99580c..ba61caa9 100644 --- a/tests/Monolog/Handler/RotatingFileHandlerTest.php +++ b/tests/Monolog/Handler/RotatingFileHandlerTest.php @@ -213,7 +213,7 @@ class RotatingFileHandlerTest extends TestCase public function rotationWhenSimilarFilesExistTests() { - return [ + return array( 'Rotation is triggered when the file of the current day is not present but similar exists' => [RotatingFileHandler::FILE_PER_DAY], @@ -222,7 +222,7 @@ class RotatingFileHandlerTest extends TestCase 'Rotation is triggered when the file of the current year is not present but similar exists' => [RotatingFileHandler::FILE_PER_YEAR], - ]; + ); } public function testReuseCurrentFile()