Skip to content

Commit

Permalink
CS fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Seldaek committed Jun 4, 2014
1 parent a162f81 commit 25b16e8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Monolog/Handler/RotatingFileHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
1 change: 1 addition & 0 deletions tests/Monolog/Handler/NewRelicHandlerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -129,5 +129,6 @@ function newrelic_set_appname($appname)
function newrelic_add_custom_parameter($key, $value)
{
NewRelicHandlerTest::$customParameters[$key] = $value;

return true;
}

0 comments on commit 25b16e8

Please sign in to comment.