Skip to content

Commit

Permalink
Fix incorrect types (#118)
Browse files Browse the repository at this point in the history
  • Loading branch information
zingimmick authored Jan 5, 2022
1 parent 5cf348c commit 9368694
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/LaravelSet.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@
final class LaravelSet extends AbstractRuleSetDescription
{
/**
* @var mixed
* @var array<string, bool|array<string, mixed>>
*/
private $rules = [];
private $rules;

/**
* @param mixed[] $rules
* @param array<string, bool|array<string, mixed>> $rules
*/
public function __construct(array $rules)
{
Expand All @@ -34,7 +34,7 @@ public function getDescription(): string
}

/**
* @return mixed[]
* @return array<string, bool|array<string, mixed>>
*/
public function getRules(): array
{
Expand Down

0 comments on commit 9368694

Please sign in to comment.