From c3a8982dfa1288e4bf4f02812033af679443e294 Mon Sep 17 00:00:00 2001 From: Manuel Date: Mon, 11 Dec 2017 11:16:45 +0100 Subject: [PATCH 1/2] fix invoke parameter In the documentation I can read "we can simply call invoke() without parameters", we need default parameter than. --- docs/sapnwrfc.stubs.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/sapnwrfc.stubs.php b/docs/sapnwrfc.stubs.php index e2af617..6b32762 100644 --- a/docs/sapnwrfc.stubs.php +++ b/docs/sapnwrfc.stubs.php @@ -192,7 +192,7 @@ class RemoteFunction * * @throws FunctionCallException if any error occurs during execution. */ - public function invoke(array $parameters, array $options = []) + public function invoke(array $parameters = [], array $options = []) { } From 87561a11bf2a106d0bd866b9c2a353f4cecc12ab Mon Sep 17 00:00:00 2001 From: Gregor Kralik Date: Fri, 5 Jan 2018 15:28:42 +0100 Subject: [PATCH 2/2] Update README.md --- README.md | 6 ------ 1 file changed, 6 deletions(-) diff --git a/README.md b/README.md index e4072ba..264498f 100644 --- a/README.md +++ b/README.md @@ -3,12 +3,6 @@ This extension is intended to provide a means for PHP 7 developers to interface with the SAP NetWeaver SDK. -*If you like/use the extension and want to donate:* -``` -LTC: LQ9XajbxJY2wxC44dwHTLCQCjoAmx2Uvfg -BTC: 18edm8meRzxYn2znxHYj1McjvWvV53GTAY -``` - ## Usage You can find detailed instructions on how to build and use this extension at https://gkralik.github.io/php7-sapnwrfc.