summaryrefslogtreecommitdiffstats
path: root/lib/Utility/OPMLExporter.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Utility/OPMLExporter.php')
-rw-r--r--lib/Utility/OPMLExporter.php15
1 files changed, 9 insertions, 6 deletions
diff --git a/lib/Utility/OPMLExporter.php b/lib/Utility/OPMLExporter.php
index 189cf8d1e..8c21fa204 100644
--- a/lib/Utility/OPMLExporter.php
+++ b/lib/Utility/OPMLExporter.php
@@ -13,6 +13,8 @@
namespace OCA\News\Utility;
+use \DOMDocument;
+use \DOMElement;
use OCA\News\Db\Feed;
/**
@@ -26,11 +28,11 @@ class OPMLExporter
*
* @param \OCA\News\Db\Folder[] $folders
* @param \OCA\News\Db\Feed[] $feeds
- * @return \DomDocument the document
+ * @return DOMDocument the document
*/
- public function build($folders, $feeds)
+ public function build(array $folders, array $feeds)
{
- $document = new \DomDocument('1.0', 'UTF-8');
+ $document = new DOMDocument('1.0', 'UTF-8');
$document->formatOutput = true;
$root = $document->createElement('opml');
@@ -81,10 +83,10 @@ class OPMLExporter
/**
* @param Feed $feed
- * @param \DOMDocument $document
- * @return \DOMElement
+ * @param DOMDocument $document
+ * @return DOMElement
*/
- protected function createFeedOutline($feed, $document)
+ protected function createFeedOutline(Feed $feed, DOMDocument $document)
{
$feedOutline = $document->createElement('outline');
$feedOutline->setAttribute('title', $feed->getTitle());
@@ -92,6 +94,7 @@ class OPMLExporter
$feedOutline->setAttribute('type', 'rss');
$feedOutline->setAttribute('xmlUrl', $feed->getUrl());
$feedOutline->setAttribute('htmlUrl', $feed->getLink());
+
return $feedOutline;
}
}