Skip to content

Commit 5416d33

Browse files
authored
Merge pull request #55 from BitScout/fix-array-column-build-fail
fix(rule): Fix phpstan fail for result of array_column
2 parents 401547f + b6cd5fe commit 5416d33

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Rules/BannedNodesRule.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,12 @@
2626
class BannedNodesRule implements Rule
2727
{
2828
/**
29-
* @var array<array<string, string[]>>
29+
* @var array<mixed>
3030
*/
3131
private $bannedNodes;
3232

3333
/**
34-
* @param array<array<string, string|string[]>> $bannedNodes
34+
* @param array<mixed> $bannedNodes
3535
*/
3636
public function __construct(array $bannedNodes)
3737
{

0 commit comments

Comments
 (0)