Skip to content

Commit 0087056

Browse files
committed
Fix styles
1 parent f023bc5 commit 0087056

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/Rules/Superglobals/SuperglobalAssignRule.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ public function processNode(Node $node, Scope $scope): array
5454
/**
5555
* @param Node\Expr\Assign $node
5656
*
57-
* @return RuleError[]
57+
* @return list<RuleError>
5858
*/
5959
private function processArrayDimFetch(Node $node, Scope $scope): array
6060
{
@@ -129,7 +129,7 @@ private function processArrayDimFetch(Node $node, Scope $scope): array
129129
/**
130130
* @param Node\Expr\Assign $node
131131
*
132-
* @return RuleError[]
132+
* @return list<RuleError>
133133
*/
134134
private function processVariableExpr(Node $node, Scope $scope): array
135135
{

tests/Type/DynamicFunctionReturnTypeExtensionTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public function testFileAsserts(string $assertType, string $file, mixed ...$args
3333
}
3434

3535
/**
36-
* @return iterable<string, mixed[]>
36+
* @return iterable<string, array<array-key, mixed>>
3737
*/
3838
public static function provideFileAssertsCases(): iterable
3939
{

tests/Type/DynamicMethodReturnTypeExtensionTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public function testFileAsserts(string $assertType, string $file, mixed ...$args
3333
}
3434

3535
/**
36-
* @return iterable<string, mixed[]>
36+
* @return iterable<string, array<array-key, mixed>>
3737
*/
3838
public static function provideFileAssertsCases(): iterable
3939
{

0 commit comments

Comments
 (0)