From c362502d72ac1d060919fb1355aaab3ca495e2ec Mon Sep 17 00:00:00 2001 From: LogMANOriginal Date: Sat, 15 Sep 2018 17:37:43 +0200 Subject: [PATCH] Updated BridgeAbstract (markdown) --- BridgeAbstract.md | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) diff --git a/BridgeAbstract.md b/BridgeAbstract.md index 59ca29f..70594dd 100644 --- a/BridgeAbstract.md +++ b/BridgeAbstract.md @@ -3,7 +3,7 @@ To create a new Bridge extending `BridgeAbstract` you must specify some [basic metadata](#basic-metadata) implement following functions: - [`collectData`](#the-collectdata-function) (**required**) -- [`getDescription`](#the-getdescription-function) +- [`getDescription`](../The-getDescription-function) - [`getMaintainer`](#the-getmaintainer-function) - [`getName`](#the-getname-function) - [`getURI`](#the-geturi-function) @@ -175,18 +175,6 @@ Parameter | ATOM | HTML | (M)RSS `enclosures`|X|X|X `categories`|X|X|X -## The `getDescription` function - -This function returns the description of a bridge. - -**Notice:** **RSS-Bridge** will by default return `const DESCRIPTION` which is defined in the bridge, so you only have to implement this function if you require different behavior! - -```PHP - public function getDescription(){ - return self::DESCRIPTION; - } -``` - ## The `getMaintainer` function This function returns the maintainer name of a bridge.