From 8abea942b30f2f60c91d79a170328501a64772f8 Mon Sep 17 00:00:00 2001 From: Yassine Guedidi Date: Fri, 2 Feb 2024 21:33:09 +0100 Subject: [PATCH] Rename GuzzleSiteAuthenticator namespace to SiteConfig --- app/config/services.yml | 4 ++-- .../GrabySiteConfigBuilder.php | 2 +- .../GrabySiteConfigBuilderTest.php | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) rename src/Wallabag/CoreBundle/{GuzzleSiteAuthenticator => SiteConfig}/GrabySiteConfigBuilder.php (98%) rename tests/Wallabag/CoreBundle/{GuzzleSiteAuthenticator => SiteConfig}/GrabySiteConfigBuilderTest.php (98%) diff --git a/app/config/services.yml b/app/config/services.yml index 3e89e29df..7dbb7f501 100644 --- a/app/config/services.yml +++ b/app/config/services.yml @@ -191,13 +191,13 @@ services: wallabag_core.http_client: alias: 'httplug.client.wallabag_core' - Wallabag\CoreBundle\GuzzleSiteAuthenticator\GrabySiteConfigBuilder: + Wallabag\CoreBundle\SiteConfig\GrabySiteConfigBuilder: tags: - { name: monolog.logger, channel: graby } # service alias override bd_guzzle_site_authenticator.site_config_builder: - alias: Wallabag\CoreBundle\GuzzleSiteAuthenticator\GrabySiteConfigBuilder + alias: Wallabag\CoreBundle\SiteConfig\GrabySiteConfigBuilder GuzzleHttp\Cookie\CookieJar: alias: 'Wallabag\CoreBundle\Helper\FileCookieJar' diff --git a/src/Wallabag/CoreBundle/GuzzleSiteAuthenticator/GrabySiteConfigBuilder.php b/src/Wallabag/CoreBundle/SiteConfig/GrabySiteConfigBuilder.php similarity index 98% rename from src/Wallabag/CoreBundle/GuzzleSiteAuthenticator/GrabySiteConfigBuilder.php rename to src/Wallabag/CoreBundle/SiteConfig/GrabySiteConfigBuilder.php index edc7d8402..5c329081f 100644 --- a/src/Wallabag/CoreBundle/GuzzleSiteAuthenticator/GrabySiteConfigBuilder.php +++ b/src/Wallabag/CoreBundle/SiteConfig/GrabySiteConfigBuilder.php @@ -1,6 +1,6 @@