Skip to content

Commit d60dedf

Browse files
Regenerate
1 parent 5f1e1be commit d60dedf

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/Framework/Assert/Functions.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@
7373
/**
7474
* Asserts that two arrays are equal while only considering a list of keys.
7575
*
76-
* @psalm-param list<array-key> $keysToBeConsidered
76+
* @psalm-param non-empty-list<array-key> $keysToBeConsidered
7777
*
7878
* @throws Exception
7979
* @throws ExpectationFailedException
@@ -92,7 +92,7 @@ function assertArrayIsEqualToArrayOnlyConsideringListOfKeys(array $expected, arr
9292
/**
9393
* Asserts that two arrays are equal while ignoring a list of keys.
9494
*
95-
* @psalm-param list<array-key> $keysToBeIgnored
95+
* @psalm-param non-empty-list<array-key> $keysToBeIgnored
9696
*
9797
* @throws Exception
9898
* @throws ExpectationFailedException
@@ -111,7 +111,7 @@ function assertArrayIsEqualToArrayIgnoringListOfKeys(array $expected, array $act
111111
/**
112112
* Asserts that two arrays are identical while only considering a list of keys.
113113
*
114-
* @psalm-param list<array-key> $keysToBeConsidered
114+
* @psalm-param non-empty-list<array-key> $keysToBeConsidered
115115
*
116116
* @throws Exception
117117
* @throws ExpectationFailedException
@@ -130,7 +130,7 @@ function assertArrayIsIdenticalToArrayOnlyConsideringListOfKeys(array $expected,
130130
/**
131131
* Asserts that two arrays are equal while ignoring a list of keys.
132132
*
133-
* @psalm-param list<array-key> $keysToBeIgnored
133+
* @psalm-param non-empty-list<array-key> $keysToBeIgnored
134134
*
135135
* @throws Exception
136136
* @throws ExpectationFailedException

0 commit comments

Comments
 (0)