Skip to content

Commit 25eb426

Browse files
committed
issue #32 - minor code style update
1 parent dcb8047 commit 25eb426

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

src/AbstractSoapClientBase.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -287,6 +287,7 @@ public function setSoapHeader(string $namespace, string $name, $data, bool $must
287287
}
288288
$this->getSoapClient()->__setSoapheaders($defaultHeaders);
289289
}
290+
290291
return $this;
291292
}
292293

@@ -348,6 +349,7 @@ public function setHttpHeader(string $headerName, $headerValue): bool
348349
}
349350
}
350351
}
352+
351353
return $state;
352354
}
353355

@@ -374,6 +376,7 @@ public function getStreamContextOptions(): array
374376
$options['http']['header'] = array_filter(array_map('trim', explode(PHP_EOL, $options['http']['header'])));
375377
}
376378
}
379+
377380
return $options;
378381
}
379382

src/Utils.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ public static function getFormattedXml(?string $string, bool $asDomDocument = fa
2222
{
2323
if (!is_null($string)) {
2424
$domDocument = self::getDOMDocument($string);
25+
2526
return $asDomDocument ? $domDocument : $domDocument->saveXML();
2627
}
2728

0 commit comments

Comments
 (0)