From 100a1b01f268a606ab0062b432fc6a315d228f21 Mon Sep 17 00:00:00 2001 From: Markus Staab Date: Thu, 26 Dec 2013 00:25:22 +0100 Subject: [PATCH] Minor phpdoc fixes --- src/Monolog/Logger.php | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/src/Monolog/Logger.php b/src/Monolog/Logger.php index 087dee2f..33b22367 100644 --- a/src/Monolog/Logger.php +++ b/src/Monolog/Logger.php @@ -107,12 +107,15 @@ class Logger implements LoggerInterface */ protected static $timezone; + /** + * @var string + */ protected $name; /** * The handler stack * - * @var array of Monolog\Handler\HandlerInterface + * @var HandlerInterface[] */ protected $handlers; @@ -121,14 +124,14 @@ class Logger implements LoggerInterface * * To process records of a single handler instead, add the processor on that specific handler * - * @var array of callables + * @var callable[] */ protected $processors; /** - * @param string $name The logging channel - * @param array $handlers Optional stack of handlers, the first one in the array is called first, etc. - * @param array $processors Optional array of processors + * @param string $name The logging channel + * @param HandlerInterface[] $handlers Optional stack of handlers, the first one in the array is called first, etc. + * @param callable[] $processors Optional array of processors */ public function __construct($name, array $handlers = array(), array $processors = array()) {