Skip to content

Commit

Permalink
Merge pull request #55 from BitScout/fix-array-column-build-fail
Browse files Browse the repository at this point in the history
fix(rule): Fix phpstan fail for result of array_column
  • Loading branch information
mremi committed Feb 22, 2022
2 parents 401547f + b6cd5fe commit 5416d33
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Rules/BannedNodesRule.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@
class BannedNodesRule implements Rule
{
/**
* @var array<array<string, string[]>>
* @var array<mixed>
*/
private $bannedNodes;

/**
* @param array<array<string, string|string[]>> $bannedNodes
* @param array<mixed> $bannedNodes
*/
public function __construct(array $bannedNodes)
{
Expand Down

0 comments on commit 5416d33

Please sign in to comment.