summaryrefslogtreecommitdiffstats
path: root/lib/Utility
diff options
context:
space:
mode:
authorSean Molenaar <sean@seanmolenaar.eu>2020-09-29 13:54:17 +0200
committerBenjamin Brahmer <info@b-brahmer.de>2020-09-29 14:56:07 +0200
commit35b53ecd404a74edea3c6866e451c4819bdc9ea8 (patch)
treedac46834d8fa7ec0122243f94604c3d2215b4d22 /lib/Utility
parentd6d169be15913404f99b86c39a03bc71942c9f77 (diff)
OPML export command and fixes
Signed-off-by: Sean Molenaar <sean@seanmolenaar.eu>
Diffstat (limited to 'lib/Utility')
-rw-r--r--lib/Utility/OPMLExporter.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/Utility/OPMLExporter.php b/lib/Utility/OPMLExporter.php
index 8c21fa204..880222da0 100644
--- a/lib/Utility/OPMLExporter.php
+++ b/lib/Utility/OPMLExporter.php
@@ -16,6 +16,7 @@ namespace OCA\News\Utility;
use \DOMDocument;
use \DOMElement;
use OCA\News\Db\Feed;
+use OCA\News\Db\Folder;
/**
* Exports the OPML
@@ -26,8 +27,8 @@ class OPMLExporter
/**
* Generates the OPML for the active user
*
- * @param \OCA\News\Db\Folder[] $folders
- * @param \OCA\News\Db\Feed[] $feeds
+ * @param Folder[] $folders
+ * @param Feed[] $feeds
* @return DOMDocument the document
*/
public function build(array $folders, array $feeds)