summaryrefslogtreecommitdiffstats
path: root/vendor/fguillot/picofeed/lib/PicoFeed/Parser/XmlParser.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/fguillot/picofeed/lib/PicoFeed/Parser/XmlParser.php')
-rw-r--r--vendor/fguillot/picofeed/lib/PicoFeed/Parser/XmlParser.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/vendor/fguillot/picofeed/lib/PicoFeed/Parser/XmlParser.php b/vendor/fguillot/picofeed/lib/PicoFeed/Parser/XmlParser.php
index 7c8ebc602..6ed5a4887 100644
--- a/vendor/fguillot/picofeed/lib/PicoFeed/Parser/XmlParser.php
+++ b/vendor/fguillot/picofeed/lib/PicoFeed/Parser/XmlParser.php
@@ -38,7 +38,7 @@ class XmlParser
*
* @param string $input XML content
*
- * @return \DOMNDocument
+ * @return \DOMDocument
*/
public static function getDomDocument($input)
{
@@ -60,10 +60,10 @@ class XmlParser
* Small wrapper around ZendXml to turn their exceptions into picoFeed
* exceptions
* @param $input the xml to load
- * @param $dom pass in a dom document or use null/omit if simpleXml should
+ * @param $dom pass in a dom document or use null/omit if simpleXml should
* be used
*/
- private static function scan($input, $dom=null)
+ private static function scan($input, $dom = null)
{
try {
return Security::scan($input, $dom);