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

Commit efa0fa7

Browse files
committed
Fix whitespace
1 parent 10c1d0a commit efa0fa7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Response/EmptyResponse.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public function __construct($status = 204, array $headers = [])
2828
$body = new Stream('php://temp', 'r');
2929
parent::__construct($body, $status, $headers);
3030
}
31-
31+
3232
/**
3333
* Create an empty response with the given headers.
3434
*

test/Response/EmptyResponseTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public function testConstructor()
2121
$this->assertEquals('', (string) $response->getBody());
2222
$this->assertEquals(201, $response->getStatusCode());
2323
}
24-
24+
2525
public function testHeaderConstructor()
2626
{
2727
$response = EmptyResponse::withHeaders(['x-empty' => ['true']]);

0 commit comments

Comments
 (0)