Skip to content
This repository was archived by the owner on Jan 29, 2020. It is now read-only.

Commit 6685127

Browse files
committed
[#5] Added keys to providers
1 parent 1e4d456 commit 6685127

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/ServerRequestTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -104,9 +104,9 @@ public function testRemovingAttributeReturnsCloneWithoutAttribute($request)
104104
public function provideMethods()
105105
{
106106
return [
107-
['POST', 'POST'],
108-
['GET', 'GET'],
109-
[null, 'GET'],
107+
'post' => ['POST', 'POST'],
108+
'get' => ['GET', 'GET'],
109+
'null' => [null, 'GET'],
110110
];
111111
}
112112

0 commit comments

Comments
 (0)