diff options
author | 2016-08-09 20:01:21 +0200 | |
---|---|---|
committer | 2016-08-09 20:08:46 +0200 | |
commit | 63bb7ef24ded812d6c4b959ddbe0cafe04c83b39 (patch) | |
tree | 3efd503b81f1cc257ddc968849a1c714a6037837 /bridges/DeveloppezDotComBridge.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/DeveloppezDotComBridge.php')
-rw-r--r-- | bridges/DeveloppezDotComBridge.php | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/bridges/DeveloppezDotComBridge.php b/bridges/DeveloppezDotComBridge.php index 66a9b2bc..e44160fc 100644 --- a/bridges/DeveloppezDotComBridge.php +++ b/bridges/DeveloppezDotComBridge.php @@ -6,7 +6,7 @@ class DeveloppezDotComBridge extends BridgeAbstract{ $this->name = "Developpez.com Actus (FR)"; $this->uri = "http://www.developpez.com/"; $this->description = "Returns the 15 newest posts from DeveloppezDotCom (full text)."; - $this->update = "2016-08-06"; + $this->update = "2016-08-09"; } private function DeveloppezDotComStripCDATA($string) { @@ -59,14 +59,6 @@ class DeveloppezDotComBridge extends BridgeAbstract{ } } - public function getName(){ - return 'DeveloppezDotCom'; - } - - public function getURI(){ - return 'http://www.developpez.com/'; - } - public function getCacheDuration(){ return 1800; // 30min } |