1
0
mirror of https://github.com/RSS-Bridge/rss-bridge.git synced 2025-08-10 02:26:37 +02:00

bridges: Remove obsolete getName() and getURI()

This commit is contained in:
logmanoriginal
2016-08-06 18:40:36 +02:00
parent a1257126bc
commit 0ddf664d89
20 changed files with 7 additions and 138 deletions

View File

@@ -10,7 +10,7 @@ class SoundCloudBridge extends BridgeAbstract{
$this->name = "Soundcloud Bridge";
$this->uri = "http://www.soundcloud.com/";
$this->description = "Returns 10 newest music from user profile";
$this->update = "2015-09-08";
$this->update = "2016-08-06";
$this->parameters[] =
'[
@@ -53,10 +53,6 @@ class SoundCloudBridge extends BridgeAbstract{
return (!empty($this->name) ? $this->name .' - ' : '') . (!empty($this->request) ? $this->request : '');
}
public function getURI(){
return 'https://www.soundcloud.com/';
}
public function getCacheDuration(){
return 600; // 10 minutes
}