Skip to content

Commit 38a9168

Browse files
chore: fixup for lint
Signed-off-by: Josh <[email protected]>
1 parent 33618a1 commit 38a9168

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

tests/lib/AppFramework/Http/HttpTest.php

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,12 @@ class HttpTest extends \Test\TestCase {
2020
#[Test]
2121
#[DataProvider('statusHeaderProvider')]
2222
public function testGetStatusHeader(string $protocol, int $statusCode, string $expectedHeader): void {
23-
$http = new Http($protocol);
24-
$header = $http->getStatusHeader($statusCode);
25-
$this->assertEquals($expectedHeader, $header);
26-
}
23+
$http = new Http($protocol);
24+
$header = $http->getStatusHeader($statusCode);
25+
$this->assertEquals($expectedHeader, $header);
26+
}
2727

28-
public static function statusHeaderProvider(): array
29-
{
28+
public static function statusHeaderProvider(): array {
3029
return [
3130
// Standard OK
3231
['HTTP/1.1', Http::STATUS_OK, 'HTTP/1.1 200 OK'],

0 commit comments

Comments
 (0)