From 8b3b6348b895abe1b8f02b8fcaa6d6a161384607 Mon Sep 17 00:00:00 2001 From: Gregor Date: Wed, 24 Jul 2024 12:14:17 +0200 Subject: [PATCH] add PHPdoc for PHPstan #9 --- src/IFunction.php | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/IFunction.php b/src/IFunction.php index beeb3b5..3b31dab 100644 --- a/src/IFunction.php +++ b/src/IFunction.php @@ -51,10 +51,10 @@ interface IFunction extends IJsonSerializable * connect to the SAP remote system, a SAP connection configuration needs to be * present. * - * @param string $name SAP remote function name. - * @param array|null $params SAP remote function call parameters. Default: null - * @param IConfiguration|null $config SAP connection configuration. Default: null - * @param IApi|null $api SAP remote function call API. Default: null + * @param string $name SAP remote function name. + * @param array|null $params SAP remote function call parameters. Default: null + * @param IConfiguration|null $config SAP connection configuration. Default: null + * @param IApi|null $api SAP remote function call API. Default: null * @throws IInvalidArgumentException * @throws IIncompleteConfigException * @throws IConnectionFailedException @@ -139,7 +139,7 @@ public function setApi(IApi $api): IFunction; /** * Returns all previously set parameters. * - * @return array Associative array of all parameters that have been set. + * @return array Associative array of all parameters that have been set. */ public function getParams(): array; @@ -152,7 +152,7 @@ public function getParams(): array; * connection configuration for this remote function needs to be set using * setConfiguration(). * - * @param array $params An array of SAP remote function call parameters. + * @param array $params An array of SAP remote function call parameters. * @return $this * @throws IInvalidArgumentException * @throws IIncompleteConfigException @@ -175,7 +175,7 @@ public function resetParams(): IFunction; * A SAP connection configuration needs to be present for a remote function * call. Use setConfiguration() to set the connection configuration. * - * @return array + * @return array * @throws IIncompleteConfigException * @throws IConnectionFailedException * @throws IUnknownFunctionException