From 906a132e4b8129e92381055db3fa8a0c27e932b3 Mon Sep 17 00:00:00 2001 From: LogMANOriginal Date: Sat, 15 Sep 2018 17:32:20 +0200 Subject: [PATCH] Created The getDescription function (markdown) --- The-getDescription-function.md | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 The-getDescription-function.md diff --git a/The-getDescription-function.md b/The-getDescription-function.md new file mode 100644 index 0000000..ba195d7 --- /dev/null +++ b/The-getDescription-function.md @@ -0,0 +1,9 @@ +The `getDescription` function returns the description for a bridge. + +**Notice:** By default **RSS-Bridge** returns the contents of `const DESCRIPTION`, so you only have to implement this function if you require different behavior! + +```PHP + public function getDescription(){ + return self::DESCRIPTION; + } +```