From 5805508158fc086af2d5e977b0be6c115c04746f Mon Sep 17 00:00:00 2001 From: Gregor Date: Mon, 5 Aug 2024 14:15:50 +0200 Subject: [PATCH] added IApi::getChangingElements() #13 --- src/Api/IApi.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/Api/IApi.php b/src/Api/IApi.php index 4227279..00368cf 100644 --- a/src/Api/IApi.php +++ b/src/Api/IApi.php @@ -38,6 +38,12 @@ public function getInputElements(): array; */ public function getOutputElements(): array; + /** + * Get all direction changing elements of the remote function. + * @return IApiElement[] + */ + public function getChangingElements(): array; + /** * Get all tables of the remote function. * @return IApiElement[]