Skip to content

Commit

Permalink
Adding missing annotations to $level
Browse files Browse the repository at this point in the history
  • Loading branch information
JimTools committed Feb 29, 2024
1 parent cdc7122 commit cec6057
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/logger/Handler/PsrLoggerHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,14 @@ class PsrLoggerHandler extends AbstractHandler
*/
private $logger;

/**
* @var string|int|mixed
*/
private $level;

/**
* @param string|int|mixed $level
*/
public function __construct(LoggerInterface $logger, $level)
{
$this->logger = $logger;
Expand Down

0 comments on commit cec6057

Please sign in to comment.