diff options
author | 2016-08-09 20:01:21 +0200 | |
---|---|---|
committer | 2016-08-09 20:08:46 +0200 | |
commit | 63bb7ef24ded812d6c4b959ddbe0cafe04c83b39 (patch) | |
tree | 3efd503b81f1cc257ddc968849a1c714a6037837 /bridges/NasaApodBridge.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/NasaApodBridge.php')
-rw-r--r-- | bridges/NasaApodBridge.php | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/bridges/NasaApodBridge.php b/bridges/NasaApodBridge.php index 9da120a9..3c0f2565 100644 --- a/bridges/NasaApodBridge.php +++ b/bridges/NasaApodBridge.php @@ -7,7 +7,7 @@ class NasaApodBridge extends BridgeAbstract{ $this->name = "NASA APOD Bridge"; $this->uri = "http://apod.nasa.gov/apod/astropix.html"; $this->description = "Returns the 3 latest NASA APOD pictures and explanations"; - $this->update = "2014-08-27"; + $this->update = "2016-08-09"; } @@ -45,14 +45,6 @@ class NasaApodBridge extends BridgeAbstract{ } } - public function getName(){ - return 'NASA APOD'; - } - - public function getURI(){ - return 'http://apod.nasa.gov/apod/astropix.html'; - } - public function getCacheDuration(){ return 3600*12; // 12 hours } |