summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJordi Boggiano <j.boggiano@seld.be>2017-06-19 00:58:15 +0200
committerJordi Boggiano <j.boggiano@seld.be>2017-06-19 00:58:15 +0200
commit0273c31996aeb09b6487762e8ead5d25e059aced (patch)
treec5f54c9af3150439b8014dc52d5b947979c1baef
parentdbd8d31277ef3d0c4c2322553462fc81793cf385 (diff)
downloadmonolog-0273c31996aeb09b6487762e8ead5d25e059aced.zip
monolog-0273c31996aeb09b6487762e8ead5d25e059aced.tar.gz
monolog-0273c31996aeb09b6487762e8ead5d25e059aced.tar.bz2
Fix some docblocks, closes #970
-rw-r--r--src/Monolog/Handler/PHPConsoleHandler.php10
-rw-r--r--src/Monolog/Handler/ProcessableHandlerInterface.php2
2 files changed, 6 insertions, 6 deletions
diff --git a/src/Monolog/Handler/PHPConsoleHandler.php b/src/Monolog/Handler/PHPConsoleHandler.php
index fad0b9a..c2b7b3e 100644
--- a/src/Monolog/Handler/PHPConsoleHandler.php
+++ b/src/Monolog/Handler/PHPConsoleHandler.php
@@ -66,11 +66,11 @@ class PHPConsoleHandler extends AbstractProcessingHandler
private $connector;
/**
- * @param array $options See \Monolog\Handler\PHPConsoleHandler::$options for more details
- * @param Connector|null $connector Instance of \PhpConsole\Connector class (optional)
- * @param int $level
- * @param bool $bubble
- * @throws RuntimeException
+ * @param array $options See \Monolog\Handler\PHPConsoleHandler::$options for more details
+ * @param Connector|null $connector Instance of \PhpConsole\Connector class (optional)
+ * @param int $level
+ * @param bool $bubble
+ * @throws \RuntimeException
*/
public function __construct(array $options = [], Connector $connector = null, $level = Logger::DEBUG, $bubble = true)
{
diff --git a/src/Monolog/Handler/ProcessableHandlerInterface.php b/src/Monolog/Handler/ProcessableHandlerInterface.php
index 59ec982..9556f98 100644
--- a/src/Monolog/Handler/ProcessableHandlerInterface.php
+++ b/src/Monolog/Handler/ProcessableHandlerInterface.php
@@ -29,7 +29,7 @@ interface ProcessableHandlerInterface
/**
* Removes the processor on top of the stack and returns it.
*
- * @throws LogicException In case the processor stack is empty
+ * @throws \LogicException In case the processor stack is empty
* @return callable
*/
public function popProcessor(): callable;