Skip to content

Commit

Permalink
Fix: DocBlock
Browse files Browse the repository at this point in the history
  • Loading branch information
localheinz committed Oct 13, 2022
1 parent 8e9516b commit cef15e0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Factory.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ final class Factory
/**
* Creates a configuration based on a rule set.
*
* @param array<string, array|bool> $overrideRules
* @param array<string, array<string, mixed>|bool> $overrideRules
*
* @throws \RuntimeException
*/
Expand Down
2 changes: 1 addition & 1 deletion src/RuleSet.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public function name(): string;
/**
* Returns an array of rules along with their configuration.
*
* @return array<string, array|bool>
* @return array<string, array<string, mixed>|bool>
*/
public function rules(): array;

Expand Down
2 changes: 1 addition & 1 deletion src/RuleSet/AbstractRuleSet.php
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ abstract class AbstractRuleSet implements RuleSet
protected string $name = '';

/**
* @var array<string, array|bool>
* @var array<string, array<string, mixed>|bool>
*/
protected array $rules = [];
protected int $targetPhpVersion = 0;
Expand Down

0 comments on commit cef15e0

Please sign in to comment.