From f9740c9b8597c2b6b13226c67860e5655ec5b21f Mon Sep 17 00:00:00 2001 From: Scrutinizer Auto-Fixer Date: Tue, 21 Jun 2016 15:33:28 +0000 Subject: [PATCH] Scrutinizer Auto-Fixes This commit consists of patches automatically generated for this project on https://scrutinizer-ci.com --- src/Viserio/Log/HandlerParser.php | 6 +++--- src/Viserio/Log/Tests/HandlerParserTest.php | 6 +++--- src/Viserio/Log/Tests/WriterTest.php | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/Viserio/Log/HandlerParser.php b/src/Viserio/Log/HandlerParser.php index d7e6d175c..6442892e8 100644 --- a/src/Viserio/Log/HandlerParser.php +++ b/src/Viserio/Log/HandlerParser.php @@ -139,10 +139,10 @@ public function getMonolog(): MonologLogger /** * Parse Processor. * - * @param HandlerInterface $handler + * @param \Monolog\Handler\HandlerInterface $handler * @param array|object|null $processors * - * @return HandlerInterface + * @return \Monolog\Handler\HandlerInterface */ protected function parseProcessor(HandlerInterface $handler, $processors = null): HandlerInterface { @@ -257,7 +257,7 @@ protected function lineFormatterSettings(): string * @param string $path * @param string $level * - * @return HandlerInterface + * @return \Monolog\Handler\HandlerInterface * * @throws \RuntimeException */ diff --git a/src/Viserio/Log/Tests/HandlerParserTest.php b/src/Viserio/Log/Tests/HandlerParserTest.php index ac0fcdde2..5e0c7e623 100644 --- a/src/Viserio/Log/Tests/HandlerParserTest.php +++ b/src/Viserio/Log/Tests/HandlerParserTest.php @@ -1,11 +1,11 @@