diff --git a/The-getIcon-function.md b/The-getIcon-function.md new file mode 100644 index 0000000..fd9252c --- /dev/null +++ b/The-getIcon-function.md @@ -0,0 +1,9 @@ +The `getIcon` function returns the URI for an icon, used as favicon in feeds. + +If no icon is specified by the bridge, RSS-Bridge will use a default location: `static::URI . '/favicon.ico'` (i.e. "https://github.com/favicon.ico") which may or may not exist. + +```PHP + public function getIcon(){ + return self::URI . '/favicon.ico'; + } +``` \ No newline at end of file