From 25b16e801979098cb2f120e697bfce454b18bf23 Mon Sep 17 00:00:00 2001 From: Jordi Boggiano Date: Wed, 4 Jun 2014 18:30:04 +0200 Subject: [PATCH] CS fixes --- src/Monolog/Handler/RotatingFileHandler.php | 6 +++--- tests/Monolog/Handler/NewRelicHandlerTest.php | 1 + 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/src/Monolog/Handler/RotatingFileHandler.php b/src/Monolog/Handler/RotatingFileHandler.php index 535ef670..f8800bc8 100644 --- a/src/Monolog/Handler/RotatingFileHandler.php +++ b/src/Monolog/Handler/RotatingFileHandler.php @@ -33,9 +33,9 @@ class RotatingFileHandler extends StreamHandler /** * @param string $filename - * @param integer $maxFiles The maximal amount of files to keep (0 means unlimited) - * @param integer $level The minimum logging level at which this handler will be triggered - * @param Boolean $bubble Whether the messages that are handled can bubble up the stack or not + * @param integer $maxFiles The maximal amount of files to keep (0 means unlimited) + * @param integer $level The minimum logging level at which this handler will be triggered + * @param Boolean $bubble Whether the messages that are handled can bubble up the stack or not * @param int $filePermission Optional file permissions (default (0644) are only for owner read/write) */ public function __construct($filename, $maxFiles = 0, $level = Logger::DEBUG, $bubble = true, $filePermission = null) diff --git a/tests/Monolog/Handler/NewRelicHandlerTest.php b/tests/Monolog/Handler/NewRelicHandlerTest.php index 5ed43795..2e059684 100644 --- a/tests/Monolog/Handler/NewRelicHandlerTest.php +++ b/tests/Monolog/Handler/NewRelicHandlerTest.php @@ -129,5 +129,6 @@ function newrelic_set_appname($appname) function newrelic_add_custom_parameter($key, $value) { NewRelicHandlerTest::$customParameters[$key] = $value; + return true; }