Skip to content

Commit 2067d3c

Browse files
Merge branch '5.4' into 6.0
* 5.4: [Form] fix UUID tranformer [Uid] Ensure ULIDs are monotonic even when the time goes backward [HttpClient] fix merge [HttpClient] fix merge
2 parents 494b458 + 596fd75 commit 2067d3c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Tests/RetryableHttpClientTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -207,14 +207,14 @@ public function testRetryWithDelay()
207207
new GenericRetryStrategy(),
208208
1,
209209
$logger = new class() extends TestLogger {
210-
public array $context = [];
210+
public $context = [];
211211

212212
public function log($level, $message, array $context = []): void
213213
{
214214
$this->context = $context;
215215
parent::log($level, $message, $context);
216216
}
217-
},
217+
}
218218
);
219219

220220
$client->request('GET', 'http://example.com/foo-bar')->getContent();

0 commit comments

Comments
 (0)