From f871434e9d7f4432297298538ccb77fa87540b4d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Elias=20H=C3=A4u=C3=9Fler?= Date: Mon, 4 Dec 2023 11:26:27 +0100 Subject: [PATCH] [BUGFIX] Use correct type for verbosity constants --- tests/src/ClearableBufferIO.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/src/ClearableBufferIO.php b/tests/src/ClearableBufferIO.php index 1fb49a11..718f3bce 100644 --- a/tests/src/ClearableBufferIO.php +++ b/tests/src/ClearableBufferIO.php @@ -45,7 +45,7 @@ final class ClearableBufferIO extends IO\BufferIO private $restoreInitialState; /** - * @param int-mask-of $verbosity + * @phpstan-param Console\Output\OutputInterface::VERBOSITY_* $verbosity */ public function __construct( string $input = '', @@ -83,7 +83,7 @@ public function makeInteractive(bool $interactive = true): self } /** - * @param int-mask-of $level + * @phpstan-param Console\Output\OutputInterface::VERBOSITY_* $level */ public function setVerbosity(int $level): self {