From 4770f5a43cd84ac3cbd79c2d5aa38202928a5d4b Mon Sep 17 00:00:00 2001 From: Andrew Longosz Date: Tue, 28 May 2024 14:49:07 +0200 Subject: [PATCH] Fixed references to deprecated namespace --- src/bundle/Resources/config/services.yml | 4 ++-- src/lib/Gateway/HttpClient/Stream.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/bundle/Resources/config/services.yml b/src/bundle/Resources/config/services.yml index 58f5bef0..2b076be4 100644 --- a/src/bundle/Resources/config/services.yml +++ b/src/bundle/Resources/config/services.yml @@ -1,7 +1,7 @@ parameters: ibexa.solr.default_connection: ~ - ibexa.solr.http_client.timeout: !php/const \EzSystems\EzPlatformSolrSearchEngineBundle\DependencyInjection\Configuration::SOLR_HTTP_CLIENT_DEFAULT_TIMEOUT - ibexa.solr.http_client.max_retries: !php/const \EzSystems\EzPlatformSolrSearchEngineBundle\DependencyInjection\Configuration::SOLR_HTTP_CLIENT_DEFAULT_MAX_RETRIES + ibexa.solr.http_client.timeout: !php/const \Ibexa\Bundle\Solr\DependencyInjection\Configuration::SOLR_HTTP_CLIENT_DEFAULT_TIMEOUT + ibexa.solr.http_client.max_retries: !php/const \Ibexa\Bundle\Solr\DependencyInjection\Configuration::SOLR_HTTP_CLIENT_DEFAULT_MAX_RETRIES services: ibexa.solr.http_client.retryable: diff --git a/src/lib/Gateway/HttpClient/Stream.php b/src/lib/Gateway/HttpClient/Stream.php index f8eb3a97..11b5e0a1 100644 --- a/src/lib/Gateway/HttpClient/Stream.php +++ b/src/lib/Gateway/HttpClient/Stream.php @@ -18,7 +18,7 @@ /** * Simple PHP stream based HTTP client. * - * @internal type-hint {@see \EzSystems\EzPlatformSolrSearchEngine\Gateway\HttpClient} instead. + * @internal type-hint {@see \Ibexa\Solr\Gateway\HttpClient} instead. */ class Stream implements HttpClient, LoggerAwareInterface {