Skip to content

Commit 3422965

Browse files
committed
refactor: Add indexes
1 parent 8a1ca7b commit 3422965

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/system/HTTP/RequestTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -199,9 +199,9 @@ public function testFetchGlobalReturnsArrayValues(): void
199199
public function testFetchGlobalReturnsWithListValues(): void
200200
{
201201
$post = [
202-
['foo' => 0],
203-
['bar' => 1],
204-
['baz' => 2],
202+
0 => ['foo' => 0],
203+
1 => ['bar' => 1],
204+
2 => ['baz' => 2],
205205
];
206206

207207
$this->request->setGlobal('post', $post);

0 commit comments

Comments
 (0)