We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 22622fc commit a9319a5Copy full SHA for a9319a5
Tests/CachingHttpClientTest.php
@@ -89,7 +89,7 @@ public function testRemovesXContentDigest()
89
'test', [
90
'response_headers' => [
91
'X-Content-Digest' => 'some-hash',
92
- ]
+ ],
93
]));
94
$headers = $response->getHeaders();
95
@@ -100,7 +100,7 @@ private function runRequest(MockResponse $mockResponse): ResponseInterface
100
{
101
$mockClient = new MockHttpClient($mockResponse);
102
103
- $store = new Store(sys_get_temp_dir() . '/sf_http_cache');
+ $store = new Store(sys_get_temp_dir().'/sf_http_cache');
104
$client = new CachingHttpClient($mockClient, $store);
105
106
$response = $client->request('GET', 'http://test');
0 commit comments