Skip to content

Commit

Permalink
Update typing (#198)
Browse files Browse the repository at this point in the history
  • Loading branch information
StevenRenaux authored Jun 27, 2024
1 parent eb8ceb8 commit 22553df
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ class SimpleFilter implements FilterInterface
protected string $name;

/**
* @var array|string
* @var array|string|int
*/
protected $value;

/**
* @param array|string $value
* @param array|string|int $value
*/
public function __construct(string $name, $value)
{
Expand All @@ -28,7 +28,7 @@ public function getName(): string
}

/**
* @return array|string
* @return array|string|int
*/
public function getValue()
{
Expand Down

0 comments on commit 22553df

Please sign in to comment.