From 5728ef759578891e5a908a7de38ad42b0bd20da9 Mon Sep 17 00:00:00 2001 From: Casey Kulm Date: Sat, 11 Jan 2025 15:36:18 -0700 Subject: [PATCH] lint --- bridges/MerchantAndMillsBridge.php | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/bridges/MerchantAndMillsBridge.php b/bridges/MerchantAndMillsBridge.php index dca043b6..74d0758d 100644 --- a/bridges/MerchantAndMillsBridge.php +++ b/bridges/MerchantAndMillsBridge.php @@ -1,12 +1,13 @@ [ 'name' => 'Country', @@ -20,7 +21,8 @@ class MerchantAndMillsBridge extends BridgeAbstract { ] ]]; - private function getCountryBlogPath($countryName): string { + private function getCountryBlogPath($countryName): string + { if ($countryName === 'European Union') { return '/eu/blog'; } @@ -36,7 +38,8 @@ class MerchantAndMillsBridge extends BridgeAbstract { return '/rw/blog'; } - public function collectData() { + public function collectData() + { $selectedCountryKey = $this->getKey('selected_country_id'); $selectedCountryBlogPath = $this->getCountryBlogPath($selectedCountryKey); $url = self::URI . $selectedCountryBlogPath;