Skip to content

Commit 8499703

Browse files
committed
array<int, => list<
1 parent 7f7a059 commit 8499703

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/Unit/Adapter/NewRelicOnMessageAdapterTest.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
final class TestNewRelicStartTransaction
88
{
99
/**
10-
* @var array<int, array>
10+
* @var list<array>
1111
*/
1212
private static array $calls = [];
1313

@@ -17,7 +17,7 @@ public static function add(string $appname, ?string $license = null): void
1717
}
1818

1919
/**
20-
* @return array<int, array>
20+
* @return list<array>
2121
*/
2222
public static function all(): array
2323
{
@@ -38,7 +38,7 @@ function newrelic_start_transaction(string $appname, ?string $license = null): v
3838
final class TestNewRelicEndTransaction
3939
{
4040
/**
41-
* @var array<int, array>
41+
* @var list<array>
4242
*/
4343
private static array $calls = [];
4444

@@ -48,7 +48,7 @@ public static function add(bool $ignore): void
4848
}
4949

5050
/**
51-
* @return array<int, array>
51+
* @return list<array>
5252
*/
5353
public static function all(): array
5454
{

0 commit comments

Comments
 (0)