Skip to content

Commit e5f56ff

Browse files
committed
Merge branch 'release/1.0.11'
2 parents d30cecc + 2a90505 commit e5f56ff

File tree

4 files changed

+11
-1
lines changed

4 files changed

+11
-1
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# CHANGELOG
22

3+
## 1.0.11
4+
- Issue #19 - WSDL_CACHE_WSDL does not work!
5+
- Merged pull request #20 - Fix WSDL_CACHE_WSDL not working
6+
37
## 1.0.10
48
- Issue #10 - Improve AbstractStructArrayBase class
59
- Issue #13 - Feature request: AbstractStructBase implement JsonSerializable

composer.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,11 @@
1515
"name": "Luke Rodgers",
1616
"email": "[email protected]",
1717
"role": "Contributor"
18+
},
19+
{
20+
"name": "Arthur Moore",
21+
"email": "[email protected]",
22+
"role": "Contributor"
1823
}
1924
],
2025
"support" : {

src/AbstractSoapClientBase.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ public function initSoapClient(array $options)
6868
$wsdlOptions = [];
6969
$defaultWsdlOptions = static::getDefaultWsdlOptions();
7070
foreach ($defaultWsdlOptions as $optionName => $optionValue) {
71-
if (array_key_exists($optionName, $options) && !empty($options[$optionName])) {
71+
if (array_key_exists($optionName, $options)) {
7272
$wsdlOptions[str_replace(self::OPTION_PREFIX, '', $optionName)] = $options[$optionName];
7373
} elseif (!empty($optionValue)) {
7474
$wsdlOptions[str_replace(self::OPTION_PREFIX, '', $optionName)] = $optionValue;

tests/SoapClientTest.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
declare(strict_types=1);
23

34
namespace WsdlToPhp\PackageBase\Tests;
45

0 commit comments

Comments
 (0)