@@ -55,7 +55,7 @@ |
||
| 55 | 55 | { |
| 56 | 56 | // Initialize SOAP manager with predefined values from configuration. |
| 57 | 57 | foreach (['options', 'namespaces'] as $param) { |
| 58 | - $method = 'set' . ucfirst($param); |
|
| 58 | + $method = 'set'.ucfirst($param); |
|
| 59 | 59 | |
| 60 | 60 | // Unset all options and namespaces and initialize them from config. |
| 61 | 61 | foreach ([null, $this->getSoapParameter($param)] as $value) { |
@@ -91,7 +91,7 @@ |
||
| 91 | 91 | */ |
| 92 | 92 | public function iSendRequestWithNestedParamsArray($function, PyStringNode $json) |
| 93 | 93 | { |
| 94 | - $this->sendRequest($function, [json_decode('{' . $json . '}', 'true')]); |
|
| 94 | + $this->sendRequest($function, [json_decode('{'.$json.'}', 'true')]); |
|
| 95 | 95 | } |
| 96 | 96 | |
| 97 | 97 | /** |