summaryrefslogtreecommitdiffstats
path: root/vendor/fguillot/picofeed/lib/PicoFeed/Parser/XmlParser.php
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2016-03-25 17:54:22 +0100
committerBernhard Posselt <dev@bernhard-posselt.com>2016-03-25 17:54:22 +0100
commit8e128604b9bace8a834daa3b02f242f976df85e7 (patch)
treed520ad25a04ab839eec838fbde16e8cab1094240 /vendor/fguillot/picofeed/lib/PicoFeed/Parser/XmlParser.php
parent7e9d8b396a87999b7abef7d08c6038af824a70e6 (diff)
add makefile for building the project
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);