1
0
mirror of https://github.com/Seldaek/monolog.git synced 2025-08-07 13:46:38 +02:00

fix more docblocks

This commit is contained in:
George Mponos
2018-12-10 23:38:46 +02:00
parent c99682466f
commit ee26edfd8c
2 changed files with 2 additions and 2 deletions

View File

@@ -67,7 +67,7 @@ class PushoverHandler extends SocketHandler
/**
* @param string $token Pushover api token
* @param string|array $users Pushover user id or array of ids the message will be sent to
* @param string $title Title sent to the Pushover API
* @param string|null $title Title sent to the Pushover API
* @param string|int $level The minimum logging level at which this handler will be triggered
* @param bool $bubble Whether the messages that are handled can bubble up the stack or not
* @param bool $useSSL Whether to connect via SSL. Required when pushing messages to users that are not

View File

@@ -143,7 +143,7 @@ class Logger implements LoggerInterface, ResettableInterface
* @param string $name The logging channel, a simple descriptive name that is attached to all log records
* @param HandlerInterface[] $handlers Optional stack of handlers, the first one in the array is called first, etc.
* @param callable[] $processors Optional array of processors
* @param ?DateTimeZone $timezone Optional timezone, if not provided date_default_timezone_get() will be used
* @param DateTimeZone|null $timezone Optional timezone, if not provided date_default_timezone_get() will be used
*/
public function __construct(string $name, array $handlers = [], array $processors = [], ?DateTimeZone $timezone = null)
{