mirror of
https://github.com/Seldaek/monolog.git
synced 2025-08-02 19:27:37 +02:00
Merge pull request #547 from CarsonF/redis-handler-docblock
Updated RedisHandler constructor's docblock
This commit is contained in:
@@ -11,8 +11,8 @@
|
|||||||
|
|
||||||
namespace Monolog\Handler;
|
namespace Monolog\Handler;
|
||||||
|
|
||||||
use Monolog\Logger;
|
|
||||||
use Monolog\Formatter\LineFormatter;
|
use Monolog\Formatter\LineFormatter;
|
||||||
|
use Monolog\Logger;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Logs to a Redis key using rpush
|
* Logs to a Redis key using rpush
|
||||||
@@ -30,7 +30,12 @@ class RedisHandler extends AbstractProcessingHandler
|
|||||||
private $redisClient;
|
private $redisClient;
|
||||||
private $redisKey;
|
private $redisKey;
|
||||||
|
|
||||||
# redis instance, key to use
|
/**
|
||||||
|
* @param \Predis\Client|\Redis $redis The redis instance
|
||||||
|
* @param string $key The key name to push records to
|
||||||
|
* @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
|
||||||
|
*/
|
||||||
public function __construct($redis, $key, $level = Logger::DEBUG, $bubble = true)
|
public function __construct($redis, $key, $level = Logger::DEBUG, $bubble = true)
|
||||||
{
|
{
|
||||||
if (!(($redis instanceof \Predis\Client) || ($redis instanceof \Redis))) {
|
if (!(($redis instanceof \Predis\Client) || ($redis instanceof \Redis))) {
|
||||||
|
Reference in New Issue
Block a user