Skip to content

Commit 00cadff

Browse files
authored
fix(laravel-soap-8): "Uri", "location" not set if config is used (#9)
1 parent d15f353 commit 00cadff

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/SoapClient.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -360,6 +360,8 @@ public function byConfig(string $setup)
360360
$this->{Str::camel($setupItem)}();
361361
} elseif (is_array($setupItemConfig)) {
362362
$this->{Str::camel($setupItem)}($this->arrayKeysToCamel($setupItemConfig));
363+
} elseif (is_string($setupItemConfig)) {
364+
$this->{Str::camel($setupItem)}($setupItemConfig);
363365
}
364366
}
365367
}

0 commit comments

Comments
 (0)