8000 fix merge · symfony/symfony@b4e2ba2 · GitHub
[go: up one dir, main page]

Skip to content

Commit b4e2ba2

Browse files
fix merge
1 parent e323097 commit b4e2ba2

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

src/Symfony/Component/Console/Tests/Helper/QuestionHelperTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ public function testAskWithAutocomplete()
201201

202202
public function testAskWithAutocompleteCallback()
203203
{
204-
if (!$this->hasSttyAvailable()) {
204+
if (!Terminal::hasSttyAvailable()) {
205205
$this->markTestSkipped('`stty` is required to test autocomplete functionality');
206206
}
207207

src/Symfony/Contracts/HttpClient/ResponseInterface.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,9 @@ public function getContent(bool $throw = true): string;
7474
public function toArray(bool $throw = true): array;
7575

7676
/**
77-
* Cancels the response.
77+
* Closes the response stream and all related buffers.
78+
*
79+
* No further chunk will be yielded after this method has been called.
7880
*/
7981
public function cancel(): void;
8082

0 commit comments

Comments
 (0)
0