mirror of
https://github.com/Seldaek/monolog.git
synced 2025-02-24 15:02:28 +01:00
Eliminate local variables used as pseudo-named-arguments, as suggested
by @Stof in https://github.com/Seldaek/monolog/pull/76#r740449
This commit is contained in:
parent
1c5969629f
commit
7a81acd28b
@ -59,9 +59,9 @@ class RavenHandler extends AbstractProcessingHandler
|
|||||||
} else {
|
} else {
|
||||||
$this->ravenClient->captureMessage(
|
$this->ravenClient->captureMessage(
|
||||||
$record['formatted']['message'],
|
$record['formatted']['message'],
|
||||||
$params = $record,
|
$record, // $params
|
||||||
$level = $record['formatted']['level'],
|
$record['formatted']['level'], // $level
|
||||||
$stack = true
|
true // $stack
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user