Skip to content

Commit

Permalink
[BUGFIX] Use correct type for verbosity constants
Browse files Browse the repository at this point in the history
  • Loading branch information
eliashaeussler authored and renovate[bot] committed Dec 4, 2023
1 parent 5141ee5 commit f871434
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/src/ClearableBufferIO.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ final class ClearableBufferIO extends IO\BufferIO
private $restoreInitialState;

/**
* @param int-mask-of<Console\Output\OutputInterface::VERBOSITY_*> $verbosity
* @phpstan-param Console\Output\OutputInterface::VERBOSITY_* $verbosity
*/
public function __construct(
string $input = '',
Expand Down Expand Up @@ -83,7 +83,7 @@ public function makeInteractive(bool $interactive = true): self
}

/**
* @param int-mask-of<Console\Output\OutputInterface::VERBOSITY_*> $level
* @phpstan-param Console\Output\OutputInterface::VERBOSITY_* $level
*/
public function setVerbosity(int $level): self
{
Expand Down

0 comments on commit f871434

Please sign in to comment.