diff options
author | 2016-08-09 20:01:21 +0200 | |
---|---|---|
committer | 2016-08-09 20:08:46 +0200 | |
commit | 63bb7ef24ded812d6c4b959ddbe0cafe04c83b39 (patch) | |
tree | 3efd503b81f1cc257ddc968849a1c714a6037837 /bridges/VineBridge.php | |
parent | 9f3e7e1da763d47250b34bca1df667bfe8292cc4 (diff) | |
download | rss-bridge-63bb7ef24ded812d6c4b959ddbe0cafe04c83b39.tar.gz rss-bridge-63bb7ef24ded812d6c4b959ddbe0cafe04c83b39.tar.zst rss-bridge-63bb7ef24ded812d6c4b959ddbe0cafe04c83b39.zip |
bridges: Remove unnecessary functions getName() and getURI()
Diffstat (limited to 'bridges/VineBridge.php')
-rw-r--r-- | bridges/VineBridge.php | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/bridges/VineBridge.php b/bridges/VineBridge.php index daf520e9..db639830 100644 --- a/bridges/VineBridge.php +++ b/bridges/VineBridge.php @@ -7,7 +7,7 @@ class VineBridge extends BridgeAbstract { $this->name = "Vine bridge"; $this->uri = "http://vine.co/"; $this->description = "Returns the latests vines from vine user page"; - $this->update = "2016-03-12"; + $this->update = "2016-08-09"; $this->parameters[] = '[ @@ -45,14 +45,6 @@ class VineBridge extends BridgeAbstract { } - public function getName(){ - return 'Vine'; - } - - public function getURI(){ - return 'http://vine.co'; - } - public function getCacheDuration(){ return 10; //seconds } |