Skip to content

Commit 6a3af6c

Browse files
committed
Fix CS
1 parent 1b63fc5 commit 6a3af6c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

MockHttpClient.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ public function request(string $method, string $url, array $options = []): Respo
6969
}
7070

7171
if (!$response instanceof ResponseInterface) {
72-
throw new TransportException(\sprintf('The response factory passed to MockHttpClient must return/yield an instance of ResponseInterface, "%s" given.', \is_object($response) ? \get_class($response) : \gettype($response)));
72+
throw new TransportException(sprintf('The response factory passed to MockHttpClient must return/yield an instance of ResponseInterface, "%s" given.', \is_object($response) ? \get_class($response) : \gettype($response)));
7373
}
7474

7575
return MockResponse::fromRequest($method, $url, $options, $response);

0 commit comments

Comments
 (0)