Skip to content
Snippets Groups Projects
Commit ad929105 authored by Osman Gormus's avatar Osman Gormus Committed by Mike Ryan
Browse files

Issue #2785717 by osman: registerNamespaces() method should check existence of `namespaces`

parent b74620ac
No related branches found
No related tags found
No related merge requests found
...@@ -300,7 +300,7 @@ class Xml extends DataParserPluginBase implements ContainerFactoryPluginInterfac ...@@ -300,7 +300,7 @@ class Xml extends DataParserPluginBase implements ContainerFactoryPluginInterfac
* The element to apply namespace registrations to. * The element to apply namespace registrations to.
*/ */
protected function registerNamespaces(\SimpleXMLElement $xml) { protected function registerNamespaces(\SimpleXMLElement $xml) {
if (is_array($this->configuration['namespaces'])) { if (isset($this->configuration['namespaces']) && is_array($this->configuration['namespaces'])) {
foreach ($this->configuration['namespaces'] as $prefix => $ns) { foreach ($this->configuration['namespaces'] as $prefix => $ns) {
$xml->registerXPathNamespace($prefix, $ns); $xml->registerXPathNamespace($prefix, $ns);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment