diff options
author | 2016-08-09 20:01:21 +0200 | |
---|---|---|
committer | 2016-08-09 20:08:46 +0200 | |
commit | 63bb7ef24ded812d6c4b959ddbe0cafe04c83b39 (patch) | |
tree | 3efd503b81f1cc257ddc968849a1c714a6037837 /bridges/NiceMatinBridge.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/NiceMatinBridge.php')
-rw-r--r-- | bridges/NiceMatinBridge.php | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/bridges/NiceMatinBridge.php b/bridges/NiceMatinBridge.php index aa418223..0a05d067 100644 --- a/bridges/NiceMatinBridge.php +++ b/bridges/NiceMatinBridge.php @@ -6,7 +6,7 @@ class NiceMatinBridge extends BridgeAbstract{ $this->name = "NiceMatin"; $this->uri = "http://www.nicematin.com/"; $this->description = "Returns the 10 newest posts from NiceMatin (full text)"; - $this->update = "2016-08-06"; + $this->update = "2016-08-09"; } private function NiceMatinExtractContent($url) { @@ -45,12 +45,4 @@ class NiceMatinBridge extends BridgeAbstract{ } } } - - public function getName(){ - return 'NiceMatin'; - } - - public function getURI(){ - return 'http://www.nicematin.com/'; - } } |