Forráskód Böngészése

Fix some docblocks, closes #970

Jordi Boggiano 8 éve
szülő
commit
0273c31996

+ 5 - 5
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)
     {

+ 1 - 1
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;