Code formating changes

This commit is contained in:
Christian Scheb 2012-08-02 10:13:49 +02:00
parent 5b4f19d032
commit 2a82f02db3
1 changed files with 2 additions and 2 deletions

View File

@ -189,12 +189,12 @@ class WsdlDownloader
$nodes = $xpath->query($query);
if ($nodes->length > 0) {
foreach ($nodes as $node) {
if ( $node->hasAttribute('schemaLocation') ) {
if ($node->hasAttribute('schemaLocation')) {
$schemaLocation = $node->getAttribute('schemaLocation');
if ($this->isRemoteFile($schemaLocation)) {
$schemaLocation = $this->download($schemaLocation);
$node->setAttribute('schemaLocation', $schemaLocation);
} elseif (!is_null($parentFile)) {
} elseif (null !== $parentFile) {
$schemaLocation = $this->resolveRelativePathInUrl($parentFile, $schemaLocation);
$schemaLocation = $this->download($schemaLocation);
$node->setAttribute('schemaLocation', $schemaLocation);