Skip to content

Commit f368080

Browse files
committed
Fix build
1 parent e72ef39 commit f368080

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/PHPStan/Rules/NodeConnectingRule.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public function processNode(Node $node, Scope $scope): array
2323
'Parent: %s, previous: %s, next: %s',
2424
get_class($node->getAttribute('parent')),
2525
get_class($node->getAttribute('previous')),
26-
get_class($node->getAttribute('next')),
26+
get_class($node->getAttribute('next'))
2727
),
2828
];
2929
}

0 commit comments

Comments
 (0)