Skip to content

Commit

Permalink
Merge branch '6.4' into 7.1
Browse files Browse the repository at this point in the history
* 6.4:
  Update deprecations baseline
  [Mailer][MailJet] Fix parameters for TrackClicks and TrackOpens
  [Doctrine][Messenger] Oracle sequences are suffixed with `_seq`
  drop existing schema if tests create it explicitly
  synchronize line numbers in deprecations baseline
  [HttpClient] Fix class requirement message
  Add integration test for RememberMe with pg connection
  fix: DoctrineTokenProvider not oracle compatible
  • Loading branch information
xabbuh committed Oct 18, 2024
2 parents 24952b3 + 509d0e8 commit 5620136
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CachingHttpClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ class CachingHttpClient implements HttpClientInterface, ResetInterface
public function __construct(HttpClientInterface $client, StoreInterface $store, array $defaultOptions = [])
{
if (!class_exists(HttpClientKernel::class)) {
throw new \LogicException(sprintf('Using "%s" requires that the HttpKernel component version 4.3 or higher is installed, try running "composer require symfony/http-kernel:^5.4".', __CLASS__));
throw new \LogicException(sprintf('Using "%s" requires the HttpKernel component, try running "composer require symfony/http-kernel".', __CLASS__));
}

$this->client = $client;
Expand Down

0 comments on commit 5620136

Please sign in to comment.