Skip to content

Commit ca63026

Browse files
committed
fix static variable access issue #3
1 parent 4c78ea2 commit ca63026

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/SapRfc.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ public function invoke(): array
217217
try {
218218
$result = $this
219219
->getFunction()
220-
->invoke($params, static::$invokeOptions);
220+
->invoke($params, self::$invokeOptions);
221221
} catch (ModuleFunctionCallException $exception) {
222222
throw new FunctionCallException(sprintf(
223223
'Function call %s failed: %s',

0 commit comments

Comments
 (0)