mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-04-05 00:59:35 +00:00
lint
This commit is contained in:
parent
0459101180
commit
5728ef7595
@ -1,12 +1,13 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
class MerchantAndMillsBridge extends BridgeAbstract {
|
class MerchantAndMillsBridge extends BridgeAbstract
|
||||||
|
{
|
||||||
const NAME = 'Merchant and Mills Blog';
|
const NAME = 'Merchant and Mills Blog';
|
||||||
const URI = 'https://merchantandmills.com';
|
const URI = 'https://merchantandmills.com';
|
||||||
const DESCRIPTION = 'The latest blog posts from Merchant and Mills.';
|
const DESCRIPTION = 'The latest blog posts from Merchant and Mills.';
|
||||||
const MAINTAINER = 'caseykulm';
|
const MAINTAINER = 'caseykulm';
|
||||||
const CACHE_TIMEOUT = 43200; // 12h
|
const CACHE_TIMEOUT = 43200; // 12h
|
||||||
const POST_LIMIT = 10; // Maximum number of blog posts to fetch
|
const POST_LIMIT = 5; // Maximum number of blog posts to fetch
|
||||||
const PARAMETERS = [[
|
const PARAMETERS = [[
|
||||||
'selected_country_id' => [
|
'selected_country_id' => [
|
||||||
'name' => 'Country',
|
'name' => 'Country',
|
||||||
@ -20,7 +21,8 @@ class MerchantAndMillsBridge extends BridgeAbstract {
|
|||||||
]
|
]
|
||||||
]];
|
]];
|
||||||
|
|
||||||
private function getCountryBlogPath($countryName): string {
|
private function getCountryBlogPath($countryName): string
|
||||||
|
{
|
||||||
if ($countryName === 'European Union') {
|
if ($countryName === 'European Union') {
|
||||||
return '/eu/blog';
|
return '/eu/blog';
|
||||||
}
|
}
|
||||||
@ -36,7 +38,8 @@ class MerchantAndMillsBridge extends BridgeAbstract {
|
|||||||
return '/rw/blog';
|
return '/rw/blog';
|
||||||
}
|
}
|
||||||
|
|
||||||
public function collectData() {
|
public function collectData()
|
||||||
|
{
|
||||||
$selectedCountryKey = $this->getKey('selected_country_id');
|
$selectedCountryKey = $this->getKey('selected_country_id');
|
||||||
$selectedCountryBlogPath = $this->getCountryBlogPath($selectedCountryKey);
|
$selectedCountryBlogPath = $this->getCountryBlogPath($selectedCountryKey);
|
||||||
$url = self::URI . $selectedCountryBlogPath;
|
$url = self::URI . $selectedCountryBlogPath;
|
||||||
|
Loading…
Reference in New Issue
Block a user